function Roll()
{

    get = new Array("global","or","main_key","big_contact" , "buy_link");

for(arr = 0;arr < get.length; arr++){

    if( document.getElementById(get[arr]) ){
	ss = document.getElementById(get[arr]).getElementsByTagName("a");

		  for( i = 0;i < ss.length;i++ ){

				 ss[i].onmouseover = function(){
				 if( this.firstChild.tagName == "IMG" ){
				 this.firstChild.src = this.firstChild.src.replace("_off","_on" );
				 }
				 }

				 ss[i].onmouseout = function(){
				 if( this.firstChild.tagName == "IMG" ){
				 this.firstChild.src = this.firstChild.src.replace("_on","_off" );
				 }
				 }
	       
		  }
    }
		}
	 }
