$(document).ready(function() {

	// toggle blank input text
	$("input.watermark").focus(function () { 
		$(this).val('');
	});

	// assign menu z-index
	var zIndexNumber = 9999;
	$('#nav li').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 1;
	});

	var config = {    
		over: showMenu,
		timeout: 100,
		out: hideMenu
	};

	$("#nav li").hoverIntent( config )

	function showMenu() { 
		$(this).addClass('sfHover');
	}

	function hideMenu(){ 
		$(this).removeClass('sfHover');
	}

    $(".image-hover").hover(function () { 
		var image = $(this).attr('id');
		$(".product-image").hide();
		$("#product-"+image).show();		
    });


});

