$(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();
			}
		);
	});
});