﻿/*
'--------------------------------------------------------------------------------------------------
' Title			: Bows/Products BROWSE JavaScript
' Description	: JavaScript functions and declarations for the products Browse sections
'--------------------------------------------------------------------------------------------------
' History
' 11/11/2008	: DPE - Created Page
'--------------------------------------------------------------------------------------------------
*/

// Adds actions to show and hide the product quickView menu
function initQuickView(){
	$(".prodBox").hover(
		function(){	// On mouseover...
			var cssOverRide = {display:"block",width:"1px"};
			$(this).find(".quickView").stop().css(cssOverRide).animate({width:"212px"},120);
		},
		function(){	// On mouseout...
			var cssOverRide = {display:"none",width:"1px"};
			$(this).find(".quickView").stop().css(cssOverRide);
		}
	);
}

// Replaces tradtional body onLoad="" functionality throughout the site
$(document).ready(function(){
	//initQuickView();	// Adds actions to show and hide the product quickView menu
});
