// Bind Slide functions to productboxpop lineup

$(".pop .productbox").hoverIntent({
 sensitivity: 25, // number = sensitivity threshold (must be 1 or higher)
 interval: 100, // number = milliseconds for onMouseOver polling interval
 over: prodPop, // function = onMouseOver callback (required)
 timeout: 100, // number = milliseconds delay before onMouseOut
 out: nada // function = onMouseOut callback (required)
});

function nada () {
};
/*
*/
//grab the product from the .initial box's child div's id attribute

var prodPopDivId = $(".initial").children("div").attr("id");
if(prodPopDivId){
	prodActivate(".initial", prodPopDivId.substring(prodPopDivId.indexOf("_") + 1));
}


$(".BVStars").hoverIntent(function(){jQuery(this).children(".bvBubble").show();}, function(){jQuery(this).children(".bvBubble").fadeOut();});
