$(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 imgSrc = $(this).attr("src");
			var end = imgSrc.lastIndexOf("_small");
			var fullImg = imgSrc.substring(0,end);
			$("#fullImage img").attr({src: fullImg+".jpg"});
		},
		function(){
			
		}
	);
}