//When the itemLoaded Fuction is called by the onload it checks the itemCurret value.
//Set the itemCurrent=='' to the required Item Title and input the desired script.
//Add additional else checks for other Items as required.

function itemLoaded(itemCurrent)
{	
	if(itemCurrent=='Welcome')
	{
	
	} 
} 

function cssChange(cssUse)
{
	var allLinkNodes=document.getElementsByTagName('link');
  for(var linkNum=0;linkNum< allLinkNodes.length;linkNum++)
  { 
	 if(allLinkNodes[linkNum].getAttribute("rel")=='stylesheet')
	 {
		allLinkNodes[linkNum].setAttribute("href",cssUse);
	 }
  }
}
