<!--

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function MM_closeBrWindow(theURL,winName) 
{
	window.close(theURL,winName);
}

function Touch(myGraphic)
{
	x = document.getElementById(myGraphic).src;
	x = x.split('/');	
	i = x.length-1;	
	y = x[i];
	
	if (y == 'plus.gif'){
		document.getElementById(myGraphic).src = 'images/minus.gif';
	} else {
		document.getElementById(myGraphic).src = 'images/plus.gif';
	}
}

/*
menu_status = new Array();
function showHide(theid){
if (document.getElementById) {
var switch_id = document.getElementById(theid);

if(menu_status[theid] != 'show') {
switch_id.className = 'show';
menu_status[theid] = 'show';
}else{
switch_id.className = 'hide';
menu_status[theid] = 'hide';
}
}
}
*/
function signup()
{
  tb_show('Create An Account', 'signup.php#height=400&width=400');
  return false;
}

function login()
{
  tb_show('Login', 'includes/loginForm.php#height=100&width=200');
  return false;
}


// '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
// Preload Object


image1 = new Image();
image1.src = "images/home_off.gif";

image2 = new Image();
image2.src = "images/how_off.gif";

image3 = new Image();
image3.src = "images/order_off.gif";

image4 = new Image();
image4.src = "images/custom_off.gif";

image5 = new Image();
image5.src = "images/samples_off.gif";

image6 = new Image();
image6.src = "images/about_off.gif";

image7 = new Image();
image7.src = "images/contact_off.gif";


// Stripey Something or other

	var stripe = function() {
		var tables = document.getElementsByTagName("table");	

		for(var x=0;x!=tables.length;x++){
			var table = tables[x];
			if (! table) { return; }
			
			var tbodies = table.getElementsByTagName("tbody");
			
			for (var h = 0; h < tbodies.length; h++) {
				var even = true;
				var trs = tbodies[h].getElementsByTagName("tr");
				
				for (var i = 0; i < trs.length; i++) {
					trs[i].onmouseover=function(){
						this.className += " ruled"; return false
					}
					trs[i].onmouseout=function(){
						this.className = this.className.replace("ruled", ""); return false
					}
					
					if(even)
						trs[i].className += " even";
					
					even = !even;
				}
			}
		}
	}

	window.onload = stripe;

-->