

function imageFader(){
		

	/* check the browser is capable of recognising the DOM objects
	   we need to implement the script - otherwise return false and allow the normal link to be executed */
	   
	if(!document.getElementsByTagName) return false;


	var fadeLinks = document.getElementsByTagName("*")

	
	for(i = 0; i < fadeLinks.length; i++) {
			if(fadeLinks[i].className.indexOf("fadeMe") >= 0) {
						
						
			

				fadeLinks[i].onmouseover = function() {

						 fadeImage(this)	
						 	
						

				}
				
			
			
				fadeLinks[i].onmouseout = function() {
			
						noFadeImage(this)		
					
				}
				
			}
				
		}
}


function fadeImage(thisImage)	{
	
	//alert(thisImage)

			thisImage.style.opacity = ".6";
			thisImage.style.filter = "alpha(opacity = 60)";
			//thisImage.style.backgroundColor.value = "#000000";		


					
}


function noFadeImage(thisImage)	{


			thisImage.style.opacity = "1";
			thisImage.style.filter = "alpha(opacity = 100)";			


}


