function hideall()
{
	$('#text1').hide();
	$('#text2').hide();
	$('#text3').hide();
	$('#text4').hide();
	
	$('#residential a').removeClass("hover");
    $('#retail a').removeClass("hover");
    $('#ban a').removeClass("hover");
    $('#master a').removeClass("hover");
	
}

 $(document).ready(function(){
   
	 $('.textblock').hide(); 
	 
	 
	 $('#residential').mouseover( function() {
	  	hideall();
	 	 $('#text1').show();
		 $('#findout').hide();
	  
	 	} 
	 );
	 
	 $('#retail').mouseover( function() {
	 	 hideall();
	 	 $('#text2').show();
		 $('#findout').hide();
	 	} 
	 );
	 
	 $('#ban').mouseover( function() {
	 	 hideall();
	 	 $('#text3').show();
		 $('#findout').hide();
	 	} 
	 );
	 
	 $('#master').mouseover( function() {
	 	 hideall();
	 	 $('#text4').show();
		 $('#findout').hide();
	 	} 
	 );
	 
	 
	 $('#navigation li').mouseout( function() {
	 	hideall();
		 $('#findout').show();
	 	} 
	 );
	   
	 $('.textblock').mouseover( function() {
	 	$(this).show();
	 	} 
	 );
	  
	 $('.textblock').mouseout( function() {
	 	hideall();
		 $('#findout').show();
	 	} 
	 ); 
  
  
	 $('#text1').mouseover( function() {
	 	 $('#residential a').addClass("hover");
		 $('#findout').hide();
	 	} 
	 );
	 
	 $('#text2').mouseover( function() {
	 	 $('#retail a').addClass("hover");
		 $('#findout').hide();
	 	} 
	 );
	 
	 $('#text3').mouseover( function() {
	 	 $('#ban a').addClass("hover");
		 $('#findout').hide();
	 	} 
	 );
	 
	 $('#text4').mouseover( function() {
	 	 $('#master a').addClass("hover");
		 $('#findout').hide();
	 	} 
	 );	
   
 });
	 
	



  