$(function(){
	/*Img Max-width*/
	$(".edittext img").each(function(){  
		if($(this).width() > $(this).parent().width()) {  
			$(this).width("100%");  
		}
	});

	$('.hoverlist li, .hovertable tbody tr').mouseover(function(){
		$(this).addClass('cur');
	}).mouseout(function(){
		$(this).removeClass('cur');
	});

	/*Img Loading*/
	//$('.productsort .img, .productlist .img img').attr("src", function() { return this.name });
})




