$(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 });

	$('.lightboximg').fancyzoom().focus(function(){this.blur();});


	$('.tab_1_tit li:first').addClass('cur');
	$('.tab_1_text:first').show();
	$('.tab_1_tit a').each(function(i){
		$(this).click(function(){
			$('.tab_1_tit li').eq(i).addClass('cur').siblings().removeClass('cur');
			$('.tab_1_show .tab_1_text').eq(i).fadeIn().siblings().hide();
			return false;
		});
	}).focus(function(){this.blur();});

})


/*$(function(){
	$('.mainnav a').click(function(){
		$.get(this.href, function(data){
			data=data.slice(data.indexOf('<body>')+6,data.lastIndexOf('</body>'));
			$('body').html(data);
			$('#content').fadeOut('slow').fadeIn('slow');
		}); 
		return false;
	})
})*/

