$(document).ready(function(){
						   
	$(".hotexp_parent_head").corner('15px');
	$(".hotexp_child").each(function(){
		$(this).click(function(){
			document.location.href=$(this).attr('rel');
		});
	});
	
	$("#plickgo").click(function(){
		$("#plick").load('/CMS/Templates/Home/home_top.php',{'loadplickhome':'true','userid':'379','groupid':'1319','email':$("#email").val(),'name':''});
	});
	$("#red_bar").corner("7px tr tl");
	load_regions();
	$(".gridrow").hover(function(){
		var $kids = $(this).children();
		$kids.attr('rel','hover');
	},function(){
		var $kids = $(this).children();
		$kids.attr('rel','')
	});
	
	$("#yt_image").click(function(){
		var vidid = $(this).attr('rel');							  
	});
	
	$("td").hover(function(){
		if($(this).attr('id') != '')
		{
			var startheight = $(document).height();
			var startwidth = $(document).width();
			var aid = $(this).attr('id');
			
			

			
			$(".extradetails[id='"+$(this).attr('id')+"']").css({
				'top':$("td[id='"+$(this).attr('id')+"'] #span1").offset().top-29,
				'left':$(this).offset().left+$(this).width()-19
				//'left':$(this).offset().left+$(this).width()/2
			});
			//jQuery.each(jQuery.browser, function(i) {
			  if($.browser.msie){
				  if($.browser.version.indexOf("7") != -1){
				  $(".extradetails[id='"+aid+"']").css({
					'top':document.getElementById(aid).offsetTop+288
				});
				}
			  }
			  
			//});
			
			$(".extradetails[id='"+$(this).attr('id')+"']").css('display','block');
			var endheight = $(document).height();
			var endwidth = $(document).width();
			if(endheight > startheight){
				$(".extradetails[id='"+$(this).attr('id')+"']").css('top',$("td[id='"+$(this).attr('id')+"'] #span1").offset().top-$(".extradetails[id='"+$(this).attr('id')+"']").height()/1.05);
				$(".extradetails[id='"+$(this).attr('id')+"'] td[id='arrow']").attr('valign','bottom');				
			}
			
			if(endwidth > startwidth){
				/*$(".extradetails[id='"+$(this).attr('id')+"']").css('left',$(this).offset().left-$(".extradetails[id='"+$(this).attr('id')+"']").width());*/
				$(".extradetails[id='"+$(this).attr('id')+"']").css('left',$(this).offset().left-$(".extradetails[id='"+$(this).attr('id')+"']").width()-25);
				var ahtml = $(".extradetails[id='"+$(this).attr('id')+"'] td[id='arrow']").html();
				$(".extradetails[id='"+$(this).attr('id')+"'] td[id='arrow']").remove();
				$(".extradetails[id='"+$(this).attr('id')+"'] td[id='moredetailspanel']").after('<td width="15" align="right" valign="top" id="arrow">'+ahtml+'</td>');
				$(".extradetails[id='"+$(this).attr('id')+"'] td[id='arrow'] img").attr('src','/images/grid/popup_arrow_rev.png');
				$(".extradetails[id='"+$(this).attr('id')+"'] td[id='arrow'] img").css('margin-left','-1px');
			}
			//alert($(this).width());
		}
	},function(){
		if($(this).attr('id') != '')
		{
			var aid = $(this).attr('id');
			$("table[id='"+aid+"']").css('display','none');
		}
	});

});

function load_regions() {
	$("#region").load("/ajax/region_selects.php",{'parent': $("#state").val(), 'search':'true' });
}

