//Begin Drop Down Menu
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;
//End Drop Down Menu

//Slide Show Pro
// this is for permalinks
//Sub slideshow_FSCommand(ByVal command, ByVal args)
//select case command
	//case "putHREF" location.href = args
	//case "putTitle" document.title = args
//end select
//end sub
//function flashPutHref(href) { location.href = href; }
//function flashPutTitle(title) { document.title = title; }

//End Slide Show Pro


//Validate Buy Now Buttons
function validateCureButton(form)
{
	if (document.form1.os0.selectedIndex  == 0 )
	{
		alert("Please select your size.");
		document.form1.os0.focus();
		return false;	
	}
	if (document.form1.os1.selectedIndex  == 0 )
	{
		alert("Please select your color.");
		document.form1.os1.focus();
		return false;	
	}
	
return true;
}

function validateFrontlineButton(form)
{
	if (document.form2.os0.selectedIndex  == 0 )
	{
		alert("Please select your size.");
		document.form2.os0.focus();
		return false;	
	}
	if (document.form2.os1.selectedIndex  == 0 )
	{
		alert("Please select your color.");
		document.form2.os1.focus();
		return false;	
	}
	
return true;
}