$(function(){
	/*Search Form*/
	$('input[name=q]').focus(function(){
		if ($(this).val() == $(this).attr('defaultValue'))  
			$(this).val(''); 
	}).blur(function(){
		if ($(this).val().length == 0)  
			$(this).val( $(this).attr('defaultValue') );
	});

	/*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 });


	$('.navigation > ul > li > ul, .navigation > ul > li > div').each(function(){
		$(this).parents('li').addClass('haschild').hover(function(){
			$(this).addClass('cur').find('.sec').show();;
		}, function(){
			$(this).removeClass('cur').find('.sec').hide();;
		});
	});
})




