$(document).ready(function(){

	// MENU SHOW HIDE PROJECTS
	if (jQuery.url.param("projectType") == "Residential" ){
			 $('.Residential').show('fast');
	         $('.Institutional').hide('fast');
	         $('.InDevelopment').hide('fast');

	}
	
	if (jQuery.url.param("projectType") == "Institutional" ){
			  $('.Residential').hide('fast');
	          $('.Institutional').show('fast');
	          $('.InDevelopment').hide('fast');

	}
	
	
	if (jQuery.url.param("projectType") == "InDevelopment" ){
			  $('.Residential').hide('fast');
	          $('.Institutional').hide('fast');
	          $('.InDevelopment').show('fast');

	}
	
	if (jQuery.url.param("projectType") == "AllProjects" ){
			  $('.Residential').show('fast');
	          $('.Institutional').show('fast');
	          $('.InDevelopment').show('fast');

	}
	
	// Turn Each Div Into A Giant Link
	
	$(".Residential").click(function(){
     	window.location=$(this).find("a").attr("href");
     	return false;
	});
	//
	$(".Institutional").click(function(){
     	window.location=$(this).find("a").attr("href");
     	return false;
	});
	//
	$(".InDevelopment").click(function(){
     	window.location=$(this).find("a").attr("href");
     	return false;
	});
	
	//Turn headers into imgs
	  
});//End Doc Ready

