$(document).ready(function(){
             
             $('a[title="reviewLink"]').mouseover(function () {
             
        $("#reviewList").stop(true, true).fadeIn('slow');
               $("#reviewList").delay('3200').fadeOut('slow');
	});
	
 	$(".extra").mouseover(function () {
             var idname= this.name;
               $("#"+idname).stop(true, true).fadeIn('slow').delay('3200').fadeOut('slow');
             });

                  
 	$(".contentPage").click(function () {
             var idname= this.name;
               $("#"+idname).show('200', 'linear').siblings().hide('200');
             });
 });
 
 
 $(window).load(function(){ 
	$('#menuBox').click(function(event) { 
    	if (!$(event.target).closest('#states').length) {
         	$('#states').hide();
         	hideAll();

     	}
     	
     if (!$(event.target).closest('#calendar').length)
     {
      $('#calendar').hide();
     }
     
     
     
	}); 
	

}); 

 
 
           

       
