$(function(){
	$(".template_markets #centerCol tr").hover(
		function(){
			$(this).addClass("rowHover");
			$(".template_markets #centerCol tr").click(function(){
				var linkobj = $(this).children("td:last").children("a").attr("href");
				//alert(linkobj);
				window.location = linkobj;
			});
		},
		function(){
			$(this).removeClass("rowHover");
		}
	);
	
	photoGallery();
});

function photoGallery(){
	$("#thumbnails img").hover(
		function(){
			var fullSize = $(this).attr("fullSize")
			$("#fullImage img").attr({src: "/images/"+fullSize});
			//alert(imgSrc);
		},
		function(){
			
		}
	);
}