// Bind Slide functions to productboxpop lineup

$(".slidey").hoverIntent({
 sensitivity: 25, // number = sensitivity threshold (must be 1 or higher)
 interval: 100, // number = milliseconds for onMouseOver polling interval
 over: prodGrow, // function = onMouseOver callback (required)
 timeout: 100, // number = milliseconds delay before onMouseOut
 out: prodShrink // function = onMouseOut callback (required)
});

//grab the product from the .initial box's child div's id attribute

var productboxpopDivId = $(".initial").children("div").attr("id");
if(productboxpopDivId){
	setActiveProduct(".initial", productboxpopDivId.substring(productboxpopDivId.indexOf("_") + 1));
}
$(function() {
	//preload images
	$.preloadImages("images/wpl/newspapers_background_active.jpg","images/wpl/newspapers_background_normal.jpg","images/wpl/photographs_background_active.jpg","images/wpl/photographs_background_normal.jpg");

});
