// Also Available Mouse Over
function onMouseOverAlso(prodID, alsoID)
{
	document.getElementById("marquee_product_shot").src = "/img/product_shots/marquee/"+prodID+"_"+alsoID+".jpg";
}

// Also Available Mouse Out
function onMouseOutAlso(prodID)
{
	document.getElementById("marquee_product_shot").src = "/img/product_shots/marquee/"+prodID+".jpg";
}

// Product dropdown event handler
function onProductDropdownChange(ddl)
{
	var prodID = ddl.options[ddl.selectedIndex].value;
	if(prodID === "") return;
	
	location.href = "/products/overview.php?prod_id="+prodID;
}