/// <reference path="../scripts/jquery-1.6.4-vsdoc.js" />
    
	function rollover(img)
	{
		pathPieces = img.src.split("/");
		curPath = '';
		for (i=0;i<pathPieces.length-1;i++)
			curPath = curPath + pathPieces[i] + '/';
			
		imgFN = pathPieces[i];
		imgFN = imgFN.substring(0, imgFN.indexOf('_'));
		
		img.src = curPath + imgFN + "_active.gif";	
	}
	
	function rollout(img)
	{
		pathPieces = img.src.split("/");
		curPath = '';
		for (i=0;i<pathPieces.length-1;i++)
			curPath = curPath + pathPieces[i] + '/';

		imgFN = pathPieces[i];
		imgFN = imgFN.substring(0, imgFN.indexOf('_'));
	
		img.src = curPath + imgFN + "_normal.gif";
	}

