$(document).ready(function() {
	$('.sub').hide();
	$('.product-detail .detail-copy').hide();
	$('.product-detail .detail-copy:first').show();
	
	$("#navigation a").not(".sub a").mouseover(function() {
		$(this).animate({
		marginLeft: "0",
		width: "108px"
		}, 80);
	});
	$("#navigation a").not(".sub a").mouseout(function() {
		$(this).animate({
		marginLeft: "8px",
		width: "100px"
		}, 200);
	});
	
	$("#side-bar-main ul a").click(function() {
		if ($(this).next(".sub").is(":hidden"))
			{
				$(".sub").slideUp(400);
				$(this).next(".sub").slideDown(400);
			}
		else
			{
				$(this).next(".sub").slideUp(400);
			}
	});
	
	
	//form input handeling hidden labled	
	$("input[type='text']").focus(function() {
		$(this).attr("value", "");
	});
	
	$("input[type='text']").blur(function() {
		if ($(this).attr("value") == "")
			{
				var val = $(this).attr("rel");
				$(this).attr("value", val);
			}
	});
	
	$(".change").change(function() {
		this.form.submit();
	});
	
});

