		function changeImage(image)
		{ 
  			if (document.all)
			{
				document.getElementById(image).style.filter = "blendTrans(duration=1)";
  				document.getElementById(image).filters.blendTrans.Apply();      
			}
			
  			document.getElementById(image).src = "images/template3/menu_option_" + image + "_grey.gif"; 
			
  			if (document.all)
				document.getElementById(image).filters.blendTrans.Play();	
		}
		
		function resetImage(image)
		{ 
  			if (document.all)
			{
				document.getElementById(image).style.filter = "blendTrans(duration=1)";
  				document.getElementById(image).filters.blendTrans.Apply();      
			}
			
  			document.getElementById(image).src = "images/template3/menu_option_" + image + ".gif"; 
			
  			if (document.all)
				document.getElementById(image).filters.blendTrans.Play();	 
		}
		
		function changeRatingBackground(id, rating)
		{
			var bgcolor = "";
			switch (rating)
			{
				case "G":
					bgcolor = "#F3FCF3";
					break;				
				case "PG":
					bgcolor = "#DEEDFD";
					break;	
				case "14A":
					bgcolor = "#FBFBE2";
					break;	
				case "18A":
					bgcolor = "#FCF2E1";
					break;	
				case "A":
					bgcolor = "#DEEDFD";
					break;					
				case "R":
					bgcolor = "#FBEBEB";
					break;
				default:
					bgcolor = "#FBF9F9";
					break;	
			}
			
  			if (document.all)
			{
				document.getElementById(id).style.filter = "blendTrans(duration=1)";
  				document.getElementById(id).filters.blendTrans.Apply();      
			}
			
  			document.getElementById(id).style.background = bgcolor;		
			
  			if (document.all)
				document.getElementById(id).filters.blendTrans.Play();
		}
		
		function resetRatingBackground(id)
		{			
  			if (document.all)
			{
				document.getElementById(id).style.filter = "blendTrans(duration=1)";
  				document.getElementById(id).filters.blendTrans.Apply();      
			}
			
  			document.getElementById(id).style.background = "none";		
			
  			if (document.all)
				document.getElementById(id).filters.blendTrans.Play();	
		}