// Bind Slide functions to boxpop lineup

$(".slidey").hoverIntent({
 sensitivity: 25, // number = sensitivity threshold (must be 1 or higher)
 interval: 100, // number = milliseconds for onMouseOver polling interval
 over: boxGrow, // function = onMouseOver callback (required)
 timeout: 100, // number = milliseconds delay before onMouseOut
 out: boxShrink // function = onMouseOut callback (required)
});

$("#boxpop_consultingSlide").click(function(){location.href='/capabilities.asp'});
$("#boxpop_programsSlide").click(function(){location.href='/capabilities.asp?pid=10'});
$("#boxpop_intelligenceSlide").click(function(){location.href='/research.asp'});

//grab the product from the .initial box's child div's id attribute
var boxpopDivId = $(".initial").children("div").attr("id");

if(boxpopDivId){
	setActiveSlide(".initial", boxpopDivId.substring(boxpopDivId.indexOf("_") + 1));
}