// JavaScript Document
<!--
	if (document.images) 
	{
	linkMENUon = new Image();
	linkMENUon.src ="/images/nav_menu_over.gif";
	linkMENUoff = new Image();
	linkMENUoff.src ="/images/nav_menu.gif";
	}
	{
	linkABOUTon = new Image();
	linkABOUTon.src ="/images/nav_about_over.gif";
	linkABOUToff = new Image();
	linkABOUToff.src ="/images/nav_about.gif";
	}
	{
	linkCREWon = new Image();
	linkCREWon.src ="/images/nav_crew_over.gif";
	linkCREWoff = new Image();
	linkCREWoff.src ="/images/nav_crew.gif";
	}
	{
	linkMILLon = new Image();
	linkMILLon.src ="/images/nav_million_over.gif";
	linkMILLoff = new Image();
	linkMILLoff.src ="/images/nav_million.gif";
	}
	{
	linkCABLEon = new Image();
	linkCABLEon.src ="/images/nav_cable_over.gif";
	linkCABLEoff = new Image();
	linkCABLEoff.src ="/images/nav_cable.gif";
	}
	{
	linkCOMMon = new Image();
	linkCOMMon.src ="/images/nav_community_over.gif";
	linkCOMMoff = new Image();
	linkCOMMoff.src ="/images/nav_community.gif";
	}
	{
	linkLOCon = new Image();
	linkLOCon.src ="/images/nav_locations_over.gif";
	linkLOCoff = new Image();
	linkLOCoff.src ="/images/nav_locations.gif";
	}
	{
	linkMEDIAon = new Image();
	linkMEDIAon.src ="/images/nav_media_over.gif";
	linkMEDIAoff = new Image();
	linkMEDIAoff.src ="/images/nav_media.gif";
	}
	{
	linkGIFTon = new Image();
	linkGIFTon.src ="/images/nav_giftcards_over.gif";
	linkGIFToff = new Image();
	linkGIFToff.src ="/images/nav_giftcards.gif";
	}
	{
	linkCLUBon = new Image();
	linkCLUBon.src ="/images/nav_club_over.gif";
	linkCLUBoff = new Image();
	linkCLUBoff.src ="/images/nav_club.gif";
	}
	{
	menuTABboxon = new Image();
	menuTABboxon.src ="/images/menu_combo_01_tab_on.gif";
	menuTABboxoff = new Image();
	menuTABboxoff.src ="/images/menu_combo_01_tab_off.gif";
	}
	{
	menuTABfingeron = new Image();
	menuTABfingeron.src ="/images/menu_combo_02_tab_on.gif";
	menuTABfingeroff = new Image();
	menuTABfingeroff.src ="/images/menu_combo_02_tab_off.gif";
	}
	{
	menuTABcaniacon = new Image();
	menuTABcaniacon.src ="/images/menu_combo_03_tab_on.gif";
	menuTABcaniacoff = new Image();
	menuTABcaniacoff.src ="/images/menu_combo_03_tab_off.gif";
	}
	{
	menuTABsandwichon = new Image();
	menuTABsandwichon.src ="/images/menu_combo_04_tab_on.gif";
	menuTABsandwichoff = new Image();
	menuTABsandwichoff.src ="/images/menu_combo_04_tab_off.gif";
	}
				
	function imgOn(imgName)
	{
	if (document.images) 
		{
		document[imgName].src = eval(imgName + "on.src");
		}
	}

	function imgOff(imgName)
	{
	if (document.images) 
		{
		document[imgName].src = eval(imgName + "off.src");
		}
	}

//-->

<!--
function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_showHideLayers() { //v6.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->

<!--
function quickSubmit() {
  var locate = document.forms[0].locate.value;
  var re_zip = new RegExp(/[0-9]{5}/);
  var re_citystate = new RegExp(/(.*?)\s*[,+|\s*]+\s*([a-zA-Z]{2,})\s*$/);
  var zip = state = city = '';
  if (locate.match(re_zip)) {
    zip = locate;
    document.forms[0].zip.value = zip;
  }
  if (locate.match(re_citystate)) {
    var tmp = re_citystate.exec();
    if (tmp[2].length) {
      city = tmp[1];
      state = tmp[2];
      document.forms[0].city2.value = city;
      document.forms[0].state2.value = state;
    }
    else {
      state = tmp[0];
      document.forms[0].state.value = state;
    }
  }

  document.forms[0].radius.value = 25;
  document.forms[0].submit();
}
//-->