/* _________________________________________________________________________
__________________________________________________________ RollOver IMAGE */ 

// [ Resist onLoad Listener ]
if (window.addEventListener) {
	window.addEventListener("load", f_smartRollover, false);
} else if(window.attachEvent) {
	window.attachEvent("onload", f_smartRollover);
}


// [ Functions ]
function f_smartRollover(){
	
	if(document.getElementsByTagName){
		var imagesList = document.getElementsByTagName("img");
		
		for(var i=0; i<imagesList.length; i++) {
			
			if(imagesList[i].getAttribute("src").match("_off.") && !imagesList[i].className.match("noOver")){
				this["pre"+i] = new Image();
				this["pre"+i].src = imagesList[i].getAttribute("src").replace("_off.", "_on.");
				
				imagesList[i].onmouseover = function(){
					f_replaceIMG(this, "over");
				};
				
				imagesList[i].onmouseout = function(){
					f_replaceIMG(this, "out");
				};
			}
		}
	}
}


function f_replaceIMG(target, _mode){
	
	if(_mode=="out")
		target.setAttribute("src", target.getAttribute("src").replace("_on.", "_off."));
	else if(_mode=="over")
		target.setAttribute("src", target.getAttribute("src").replace("_off.", "_on."));
}



