

var iu='images/'; 

var mOverExt='_on.gif';

var mOutExt='_off.gif';



var str1="<table width=\"148\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" height=\"112\"><tr><td></td></tr></table>";



var str2="<table border =\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"148\" height=\"80\"><tr><td width=\"148\" height=\"16\"><a href=\"home_intro.htm\" onMouseOver=\"mOver('menu2','menu2-1','Home and Garden Decor'); return true\" onMouseOut=\"mOut('menu2','menu2-1');hide=true; timeOut('menu2',200); return true\"><img src=\"images/menu2-1_off.gif\" border=\"0\" width=\"148\" width=\"148\" height=\"16\" name=\"menu2-1\" alt=\"Home and Garden Decor\"></a></td></tr>  <tr><td width=\"148\" height=\"16\"><a href=\"divisions_officesupplies.htm\" onMouseOver=\"mOver('menu2','menu2-2','Office Supplies'); return true\" onMouseOut=\"mOut('menu2','menu2-2');hide=true; timeOut('menu2',200); return true\"><img src=\"images/menu2-2_off.gif\" border=\"0\" width=\"148\" width=\"148\" height=\"16\" name=\"menu2-2\" alt=\"Office Supplies\"></a></td></tr><tr><td width=\"148\" height=\"16\"><a href=\"divisions_apparel.htm\" onMouseOver=\"mOver('menu2','menu2-3','Apparel and Fabric'); return true\" onMouseOut=\"mOut('menu2','menu2-3');hide=true; timeOut('menu2',200); return true\"><img src=\"images/menu2-3_off.gif\" border=\"0\" width=\"148\" width=\"148\" height=\"16\" name=\"menu2-3\" alt=\"Apparel and Fabric\"></a></td></tr><tr><td width=\"148\" height=\"16\"><a href=\"divisions_packaging.htm\" onMouseOver=\"mOver('menu2','menu2-4','Packaging'); return true\" onMouseOut=\"mOut('menu2','menu2-4');hide=true; timeOut('menu2',200); return true\"><img src=\"images/menu2-4_off.gif\" border=\"0\" width=\"148\" width=\"148\" height=\"16\" name=\"menu2-4\" alt=\"Packaging\"></a></td></tr><tr><td width=\"148\" height=\"16\"><a href=\"divisions_hitech.htm\" onMouseOver=\"mOver('menu2','menu2-5','Hi-tech Investment'); return true\" onMouseOut=\"mOut('menu2','menu2-5');hide=true; timeOut('menu2',200); return true\"><img src=\"images/menu2-5_off.gif\" border=\"0\" width=\"148\" width=\"148\" height=\"16\" name=\"menu2-5\" alt=\"Hi-tech Investment\"></a></td></tr><tr><td width=\"148\" height=\"16\"><a href=\"divisions_promotional_tshirt.htm\" onMouseOver=\"mOver('menu2','menu2-6','Promotional Products'); return true\" onMouseOut=\"mOut('menu2','menu2-6');hide=true; timeOut('menu2',200); return true\"><img src=\"images/menu2-6_off.gif\" border=\"0\" width=\"148\" width=\"148\" height=\"16\" name=\"menu2-6\" alt=\"Promotional Products\"></a></td></tr></table>";



var str3="<table border =\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"148\" height=\"16\"><tr><td width=\"148\" height=\"16\"><a href=\"events.php\" onMouseOver=\"mOver('menu3','menu3-1','Events'); return true\" onMouseOut=\"mOut('menu3','menu3-1');hide=true; timeOut('menu3',200); return true\"><img src=\"images/menu3-1_off.gif\" border=\"0\" width=\"148\" width=\"148\" height=\"16\" name=\"menu3-1\" alt=\"Trade Show\"></a></td></tr></table>";



var str4="<table border =\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"148\" height=\"32\"><tr><td width=\"148\" height=\"16\"><a href=\"aboutus_mission.htm\" onMouseOver=\"mOver('menu4','menu4-1','Our Mission Statement'); return true\" onMouseOut=\"mOut('menu4','menu4-1');hide=true; timeOut('menu4',200); return true\"><img src=\"images/menu4-1_off.gif\" border=\"0\" width=\"148\" width=\"148\" height=\"16\" name=\"menu4-1\" alt=\"Our Mission\"></a></td></tr><tr><td width=\"148\" height=\"16\"><a href=\"aboutus_commitment.htm\" onMouseOver=\"mOver('menu4','menu4-2','Our Commitment'); return true\" onMouseOut=\"mOut('menu4','menu4-2');hide=true; timeOut('menu4',200); return true\"><img src=\"images/menu4-2_off.gif\" border=\"0\" width=\"148\" width=\"148\" height=\"16\" name=\"menu4-2\" alt=\"Our Commitment\"></a></td></tr><tr><td width=\"148\" height=\"16\"><a href=\"aboutus_founderspartners.htm\" onMouseOver=\"mOver('menu4','menu4-3','Founders and Partners'); return true\" onMouseOut=\"mOut('menu4','menu4-3');hide=true; timeOut('menu4',200); return true\"><img src=\"images/menu4-3_off.gif\" border=\"0\" width=\"148\" width=\"148\" height=\"16\" name=\"menu4-3\" alt=\"Founders and Partners\"></a></td></tr></table>";



var str5="<table border =\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"148\" height=\"64\"><tr><td></td></tr></table>";

 

//Code shouldn't have to be edited beyond this point regardless of what changes need to be made to the drop-downs

//Functions only below

//used by sub-menus

function mOver(imgLayer,imgName,descr) {

	hide=false;

	if((ns4)) {document.layers[imgLayer].document[imgName].src=iu+imgName+mOverExt;}

	else {this.document[imgName].src=iu+imgName+mOverExt;}

	if (descr){window.status=descr;}

}



//used by sub-menus

function mOut(imgLayer,imgName) {

	if((ns4)) {document.layers[imgLayer].document[imgName].src=iu+imgName+mOutExt;}

	else {this.document[imgName].src=iu+imgName+mOutExt;}

	window.status='';

}



//used by menu to reveal selected sub-menus, and to hide non-selected sub-menus to prevent overlapping

function show(mnuLayer) {

	if (loaded==true) {

		if ((oldShow!=mnuLayer)&&(oldShow!='')) {

			newShow=mnuLayer;

			hideOld();

		}

		oldShow=mnuLayer;

		if ((ns4) ) document.layers[mnuLayer].visibility = "show"

		if ((ie4)) document.all[mnuLayer].style.visibility = "visible"

		if ((DOM))  document.getElementById(mnuLayer).style.visibility = "visible"

			

	}

}



//used by sub-menus to hide its layer if user moves off a selection but is provides delay

//to allow for user to move between selections (normal mOuts are too quick to switch off layer)

function timeOut(mnuLayer,delay) {

	if (loaded==true) {

		if ((ns4) || (ie4) || (DOM)) {

			hideLayer=mnuLayer;

			setTimeout ("delayHide()",delay);

		}

	}

}



//called by timeOut function...if user has not moused over a selection (hide=false) within

//the delay period by now, sub-menu layer will be hidden

function delayHide() {

	if (hide==true) {

		if ((ns4)) {document.layers[hideLayer].visibility = "hide"; }

		if ((ie4)) {document.all[hideLayer].style.visibility = "hidden"; }

		if ((DOM)) {document.getElementById(hideLayer).style.visibility = "hidden"; }

	}

}



//called by show function to hide sub-menus that user has moved away from...important call

//if they just mOver'ed prev menu but not prev sub-menu

function hideOld() {

	if ((ns4)) {document.layers[oldShow].visibility = "hide";}

	if ((ie4)) {document.all[oldShow].style.visibility = "hidden";}

	if ((DOM)) {document.getElementById(oldShow).style.visibility = "hidden"; }

	oldShow=newShow;

}



// Resize fix courtesy of WebMonkey - good stuff at www.webmonkey.com

function WM_netscapeCssFix() {

  if (document.WM.WM_netscapeCssFix.initWindowWidth != window.innerWidth ||

document.WM.WM_netscapeCssFix.initWindowHeight != window.innerHeight) {

    document.location = document.location;

  }

}



function WM_netscapeCssFixCheckIn() {

  if ((navigator.appName == 'Netscape') && (parseInt(navigator.appVersion) == 4)) {

    if (typeof document.WM == 'undefined'){

      document.WM = new Object;

    }

    if (typeof document.WM.WM_scaleFont == 'undefined') {

      document.WM.WM_netscapeCssFix = new Object;

      document.WM.WM_netscapeCssFix.initWindowWidth = window.innerWidth;

      document.WM.WM_netscapeCssFix.initWindowHeight = window.innerHeight;

    }

    window.onresize = WM_netscapeCssFix;

  }

}



WM_netscapeCssFixCheckIn();

function show_menu(){
	document.getElementById('sub_menu').style.visibility='visible';
	}
function hide_menu(){
	document.getElementById('sub_menu').style.visibility='hidden';
	}

//end