//var $j = jQuery.noConflict();

$(document).ready(function() {
		if($('#text-3')){$('#text-3 .wpcf7').removeClass('wpcf7'); }
		
		//if($.cookie("floating_form") != "hidden")			   
			//$('#text-3').fadeIn('slow');
		//$j.cookie("floating_form", null);  //delete the cookie
		
		if($('.quickContact').length > 0)
			$('.quickContact').click(function(e){
				$(this).text('Email us (Loading...)');
				e.preventDefault();
				show_floating_form();
			});
});
function hide_floating_form(){
	$('#text-3').slideUp('slow');
	//$.cookie("floating_form", "hidden", { expires: 7, path: '/' });
}
function show_floating_form(){
	$('#text-3').slideDown('fast',function(){
		$.wpcf7Init();
		$('.quickContact').text('Email us');
	});
	//$.cookie("floating_form", "visible", { expires: 7, path: '/' });
}
function success_floating_form(){
	setTimeout("hide_floating_form()",2000);
}
