$(function()
	{
		$(".contactMessage1").show();
		$(".contactForm").hide();
		
		

	}
);

$(document).ready(function() 
	{				   
		
		$(".openForm").click(function () {
		 	$(".contactForm").show();
		 $(".contactMessage1").hide(600);
		 $(".contactMessage2").fadeIn(600);
		});
		
		$(".closeForm").click(function () {
		 	$(".contactForm").hide();
		 $(".contactMessage1").fadeIn(600);
		 $(".contactMessage2").fadeOut(600);
		});
		
		
		$("#filterSubmit").hide();					   	
		$.ui.dialog.defaults.bgiframe = true;
		$(function() 
		{
			if ($(".console").height()>450) 
			{
				$(".console").dialog({width:600,height:450});
			}
			else
			{
				$(".console").dialog({width:600});
			}
		});
		
		if ( $(".success").length > 0 ) 
		{
			$(".ui-dialog").fadeTo(2000, 1).fadeOut(1000);
		}
	});

