$().ready(function(){

//////////////////////  Table Row Hovering backgorund hide/show ////////////////////*/	
			$("#spotLight").find("dl").hover(function(){
				$(this).addClass("hover");
			}, function() {
				$(this).removeClass("hover");
			});	
			
			$("#spotLight").find("dl").click(function(){
				//window.location=$(this).find("a").attr("href");
				window.open($(this).find("a").attr("href"));
				return false;
			});	
			
			$(".newsContent,.photoList").click(function(){ 
				if ( $(this).find("a.block").attr("href") != undefined ) {
					window.location=$(this).find("a.block").attr("href");
					return false;
				} 
			});	
			
			$(".newsContent a,.photoList a").not("a.block").click(function(){ 
				window.location=$(this).attr("href");
				return false;
			})
			
			$(".newsContent,.photoList").hover(function(){
				$(this).addClass("textH");
			}, function() {
				$(this).removeClass("textH");
			});	
			
			$(".noHover").hover(function(){
				$(this).removeClass("textH");
			}, function() {
				$(this).removeClass("textH");
			});	
			
			
			$("#mainNav").find("a").hover(function(){
				$(this).find("span").addClass("spanHover");
			}, function() {
				$(this).find("span").removeClass("spanHover");
			});	
			
			$(".location").find("span").hover(function(){
				$(this).addClass("locationHoverSpan");
			}, function() {
				$(this).removeClass("locationHoverSpan");
			});	
			
			
			
			
			$(".subNav").hoverIntent(function(){
				$(this).find("ul").slideDown("fast");
			}, function() {
				$(this).find("ul").slideUp("fast");
			});	
			
			$(".subNav>ul").hover(function(){
				$(this).parent(".subNav").find("span").addClass("spanHover");
			}, function() {
				$(this).parent(".subNav").find("span").removeClass("spanHover");
			});	
			
			$(".subNav>ul").hover(function(){
				$(this).parent(".subNav").addClass("selectd");
			}, function() {
				$(this).parent(".subNav").removeClass("selectd");
			});	
			
});


