$(document).ready(function(){

	//$(window).load(function () {
	
		//$("#contentWrapper").hide();
		//$("#contentWrapper").slideDown("slow");
		
    //});
	
	

	$("#bodyTourVirtualMain .post").mouseout(function(){
      $(".highlight", this).css({ backgroundColor:"#5d6c65" });
    }).mouseover(function(){
      $(".highlight", this).css({ backgroundColor:"#8db1bd" });
    });
    
    $("#bodyInformationFloorplans .post").mouseout(function(){
      $(".highlight", this).css({ backgroundColor:"#eaeaea" });
    }).mouseover(function(){
      $(".highlight", this).css({ backgroundColor:"#b9bfbd" });
    });
    
    $("#bodyInformationNews .post").mouseout(function(){
      $(".highlight", this).css({ backgroundColor:"#eaeaea" });
    }).mouseover(function(){
      $(".highlight", this).css({ backgroundColor:"#b9bfbd" });
    });


    
 });

