// JavaScript Document
function addCart(id,aqty,minqty)
{
	//alert(id);
	//alert(minqty);
if(aqty != 0 && aqty >= minqty)
{
	if(document.getElementById('prods').value != "")
	{
		var arrpstr = document.getElementById('prods').value.split(",");
		var i=0,chk=1;
		while(i < arrpstr.length)
		{
			/*var arrpstr1 = arrpstr[i];
			alert(arrpstr1);*/
			var arrpro = arrpstr[i].split("/");
			if(id == arrpro[0])
			{
				alert("Product already in your cart ");
				document.getElementById('prodid').value = document.getElementById('prods').value;
				chk = 0;
				//break;
			}
			i++;
		}
		//alert(arrpstr.length);
		if(chk == 1)
		{
			document.getElementById('prodid').value = document.getElementById('prods').value+","+id+"/1";
		}	
	}
	else
	{
		document.getElementById('prodid').value = id+"/1";
	}	
	document.featureprod.submit();
}
else
{
	alert("Insufficient Stock");
}
}
function goToPage(url)
{
	document.featureprod.action = ""+url+"";
	document.featureprod.submit();
}

//SuckerTree Vertical Menu 1.1 (Nov 8th, 06)
//By Dynamic Drive: http://www.dynamicdrive.com/style/

var menuids=["suckertree1"] //Enter id(s) of SuckerTree UL menus, separated by commas

function buildsubmenus(){
for (var i=0; i<menuids.length; i++){
  var ultags=document.getElementById(menuids[i]).getElementsByTagName("ul")
    for (var t=0; t<ultags.length; t++){
    ultags[t].parentNode.getElementsByTagName("a")[0].className="subfolderstyle"
		if (ultags[t].parentNode.parentNode.id==menuids[i]) //if this is a first level submenu
			ultags[t].style.left=ultags[t].parentNode.offsetWidth+"px" //dynamically position first level submenus to be width of main menu item
		else //else if this is a sub level submenu (ul)
		  ultags[t].style.left=ultags[t-1].getElementsByTagName("a")[0].offsetWidth+"px" //position menu to the right of menu item that activated it
    ultags[t].parentNode.onmouseover=function(){
    this.getElementsByTagName("ul")[0].style.display="block"
    }
    ultags[t].parentNode.onmouseout=function(){
    this.getElementsByTagName("ul")[0].style.display="none"
    }
    }
		for (var t=ultags.length-1; t>-1; t--){ //loop through all sub menus again, and use "display:none" to hide menus (to prevent possible page scrollbars
		ultags[t].style.visibility="visible"
		ultags[t].style.display="none"
		}
  }
}

if (window.addEventListener)
window.addEventListener("load", buildsubmenus, false)
else if (window.attachEvent)
window.attachEvent("onload", buildsubmenus)

function pause()
{
	//alert("hi");
	document.getElementById('newsmarquee').scrollAmount = 0;
}
function play()
{
	//alert("hi");
	document.getElementById('newsmarquee').scrollAmount = 3;
}

var newwindow;
function poptastic(url)
{
	//alert(url);
	newwindow=window.open(url,'name','height=300,width=400,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}
