
function accordian(divid) {
	//resetAccordian();
	if (document.getElementById(divid).style.height != "auto") {
		document.getElementById(divid).style.height="auto";
   		document.getElementById(divid).style.visibility="visible";
	} else {
		document.getElementById(divid).style.height="0px";
   		document.getElementById(divid).style.visibility="hidden";
	}
}
function resetAccordian() {
	var i;
	var menuList;
    menuList=new Array("aboutMenu", "productsMenu", "servicesMenu", "galleryMenu");
    for (i in menuList) {
        document.getElementById(menuList[i]).style.visibility="hidden";
        document.getElementById(menuList[i]).style.height="0px";
    }
}
function addToBasket(basket) {
	if (document.getElementById(basket).style.visibility="hidden") {
		showBasket(basket);
	}
	document.getElementById(basket).innerHTML="";
}
function show(basket) {
	document.getElementById(basket).style.visibility="visible";
	document.getElementById(basket).style.height="75px";
}
function showApp(appid,appURL) {
	showContent(appid,1);
	document.getElementById(appid).data="OnLineDesign/index.html";
}
function startScript() {
	resetAccordian();
}
function IncludeJavaScript(jsFile)
{
document.write('<script type="text/javascript" src="'
+ jsFile + '"></script>'); 
}
IncludeJavaScript('SnowStorm/snowstorm.js');
