<!-- This script and many more are available free online at The JavaScript Source!! http://javascript.internet.com Created by: http://london-net.net -->
<!-- Begin
function displaySubs(the_sub){

var subs_array = new Array("P1","P2","P3","P4","P5", "P6", "P7", "P8");// Put the id's of your hidden divs in this array

//	if (document.getElementById(the_sub).style.display==""){
//	document.getElementById(the_sub).style.display = "none";return
//  }
  for (i=0;i<subs_array.length;i++){
//  for (i=0;i<8;i++){
	var my_sub = document.getElementById(subs_array[i]);
	my_sub.style.display = "none";
	}
  document.getElementById(the_sub).style.display = "";
//document.write('<div id="divStayTopLeft" style="position:absolute">')
  }
//  End -->

function cbg(item,tn)
{
   if (!tn)
     var tn = "";
  document.getElementById(item).style.background = "#990000";
  document.getElementById(item).style.color = "#ffffff";

//   document.getElementById(item).style.background = "url('images/shop"+tn+".jpg') no-repeat";
}

function rbg(item,tn)
{
   if (!tn)
     var tn = "";
  document.getElementById(item).style.background = "#ff9999";
  document.getElementById(item).style.color = "#000000";
}

