$(document).ready(function() {

      function addMenu(){
        $(this).addClass("hovering");
        }

      function removeMenu(){
        $(this).removeClass("hovering");
        }

    var menuConfig = {
         interval: 50,
         sensitivity: 6,
         over: addMenu,
         timeout: 250,
         out: removeMenu
    };

    $(".menu-wrapper").hoverIntent(menuConfig);
	
	/**
	* Anchor with rel=external attribute will open in new window
	*/
	$("input.quantity-notice").keypress( function() {
		$('.update-notice').html('*** YOU MUST CLICK THE "UPDATE" BUTTON BELOW TO CONFIRM YOUR CHANGES ***');				
	});

	$("a[rel='external']").click( function() {
		$(this).attr("target","_blank");				
	});
	
});
