var $j = jQuery.noConflict();

$j(document).ready(function() {
		if($j.cookie("floating_form") != "hidden")			   
			$j('#text-461106161').fadeIn('slow');
		//$j.cookie("floating_form", null);  //delete the cookie
});
function hide_floating_form(){
	$j('#text-461106161').fadeOut('slow');
	$j.cookie("floating_form", "hidden");
}
function success_floating_form(){
	setTimeout("hide_floating_form()",2000);
}