k={temp:""};
$(document).ready(function(){
	$(".tabs").tabs();
	$(".primage_l , .primage , .product_intro_block img").hover(
		function(e){
			size=$(this).attr("class")=="primage_l" ? "600" : "300";
			$(".body").append("<div id='img' class='float_image' style='top:"+e.pageY+"; left:"+e.pageX+";'>"+

					     "<img src='"+$(this).attr("src").split("?")[0].replace("100",size)+"'></img></div>");
			if($(this).attr("src")){
				k.temp=$("#"+$(this).attr("target")+"_prname").html();
				$("#"+$(this).attr("target")+"_prname").html(" - "+$(this).attr("modelno")+" "+$(this).attr("alt")); 
			}
		},
		function(){
			$("#img").remove();
			if($(this).attr("src")){ $("#"+$(this).attr("target")+"_prname").html(k.temp); }
		}
	);
	$('ul#icons li').hover(
		function() { $(this).addClass('ui-state-hover'); }, 
		function() { $(this).removeClass('ui-state-hover'); }
	);
});
