		var hoverFlag = 0;
		
	
		$(document).ready(function() {
				
				if(detectIE()) {
					theTopTop = "360px";
					theTopBottom = "410px";
					
				}
				else
				{
					theTopTop = "356px";
					theTopBottom = "406px";					
				}
		
		$('#hover_video, #hover_neighborhood, #hover_promo').hide();
		
		 $('#hover_video_container').hover(function() {
		 	$('#hover_video').stop();
		 	$('#hover_video').show();
			$('#hover_video').animate({top:theTopTop,height:"50px"},"fast");
			
		 },
		 function() {
		 	$('#hover_video').stop();
			$('#hover_video').animate({top:theTopBottom,height:"1px"},"fast",function() { $('#hover_video').hide(); });
		 });
		 
		 $('#hover_hood_container').hover(function() {
		 	$('#hover_neighborhood').stop();
		 	$('#hover_neighborhood').show();
			$('#hover_neighborhood').animate({top:theTopTop,height:"50px"},"fast");
		 },
		 function() {
		 	$('#hover_neighborhood').stop();
			$('#hover_neighborhood').animate({top:theTopBottom,height:"1px"},"fast",function() { $('#hover_neighborhood').hide(); });
		 });

		 $('#hover_promo_container').hover(function() {
		 	$('#hover_promo').stop();
		 	$('#hover_promo').show();
			$('#hover_promo').animate({top:theTopTop,height:"50px"},"fast");
		 },
		 function() {
		 	$('#hover_promo').stop();
			$('#hover_promo').animate({top:theTopBottom,height:"1px"},"fast",function() { $('#hover_promo').hide(); });
		 });
		
		 $('#hover_video').hover(function() {
		 	$('#hover_video').stop();
			$('#hover_video').stop();
		 	$('#hover_video').animate({top:theTopTop,height:"50px"},"fast");
		 },function() {
		 	$('#hover_video').stop();
			$('#hover_video').animate({top:theTopBottom,height:"1px"},"fast",function() { $('#hover_video').hide(); });
		 });		 
		 $('#hover_neighborhood').hover(function() {
		 	$('#hover_neighborhood').stop();
			$('#hover_neighborhood').stop();
		 	$('#hover_neighborhood').animate({top:theTopTop,height:"50px"},"fast");

		 },function() {
		 	$('#hover_neighborhood').stop();
			$('#hover_neighborhood').animate({top:theTopBottom,height:"1px"},"fast",function() { $('#hover_neighborhood').hide(); });
		 });
		 $('#hover_promo').hover(function() {
			$('#hover_promo').stop();
			$('#hover_promo').stop();		 
		 	$('#hover_promo').animate({top:theTopTop,height:"50px"},"fast");

		 },function() {
		 	 $('#hover_promo').stop();
			 $('#hover_promo').animate({top:theTopBottom,height:"1px"},"fast",function() { $('#hover_promo').hide(); });
		 });		 
		 
		 
		 });
		
			  function detectIE() {
			  var userAgent = navigator.userAgent.toLowerCase();
			  
			  if (userAgent.indexOf('msie')!=-1) {
				  return true;
			  }
			  else {
			  return false;
			  }
			}
			

	
