$(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 });
})





$(function(){
  $('.nav>li').mouseover(function(event){
    $(this).addClass("cur");
  }).mouseout(function(){
    $(this).removeClass("cur");
  });
  $(".nav ul").after("<div>　　　</div>"); 
});






