$(document).ready(function(){
	$("#prod-text .inactive").attr('id',function(p){
		return "text-"+p;										 
	});
	
	$("#text-0").show();
	
	$(".thumb").attr('id',function(t){
		return "thumb"+t;									   
	}).each(function(e){
		$(this).hover(
			function(){
				t_src = $(this).attr("src");
				t_alt = $(this).attr("alt");
				
				$("#bigpic").attr({
					src: t_src.replace("sm","lg"),
					alt: t_alt
				});
				
				$("#prod-text > div").hide();
				$("#text-"+e).show();
			}
		);
	});
	
	$("#prod-thumbs>tbody>tr").find("td:eq(1)>p:eq(0)>a").hover(function(){$(this).css("text-decoration", "underline");var t_obj = $(this).closest("tr"); $(t_obj).find("td:eq(0)>a:eq(0)>img:eq(0)").mouseover();},function(){$(this).css("text-decoration", "none");});
});
