$(document).ready(function() {
		if($.cookie("floating_form") != "hidden")			   
			$('#text-3').fadeIn('slow');
		//$j.cookie("floating_form", null);  //delete the cookie

	//spam assasin
	$('.ziuq-ahctpac span.wpcf7-quiz-label').each(function(){
		$(this).text($(this).text().replace('*','+'));
		$(this).text($(this).text().replace('/','-'));
	});

});
function hide_floating_form(){
	$('#text-3').fadeOut('slow');
	$.cookie("floating_form", "hidden");
}
function success_floating_form(){
	setTimeout("hide_floating_form()",2000);
}
