// JavaScript Document


function defaultPageControl(){
	var strPath = document.location.pathname;
	var objPath = strPath.split("/");
	var strPage = objPath[objPath.length-1];
	var strImage = "";

switch(strPage)
{
case "default.php":
  strImage = "starHome.jpg";
  break;
case "showcaselist.php":
  strImage = "starShowcaselist.jpg";
  break;
case "about.php":
  strImage = "starAbout.jpg";
  break;
case "contact.php":
  strImage = "starContact.jpg";
  break;
case "specials.php":
  strImage = "starSpecials.jpg";
  break;
default:
	strImage = "starHome.jpg";
	break;
}

	global_findCssRule("#starBox").style.backgroundImage="url('../images/" + strImage + "')";
	
}
