function smartRollover() {
	
	
	check(".page_about #footer .menu01 .menu_btn_01 img");
	check(".page_news #footer .menu01 .menu_btn_02 img");
	check(".page_blog #footer .menu01 .menu_btn_03 img");
	check(".page_collection #footer .menu01 .menu_btn_04 img");
	check(".page_ourshop #footer .menu01 .menu_btn_05 img");
	check(".page_stokist #footer .menu01 .menu_btn_06 img");
	check(".page_link #footer .menu01 .menu_btn_07 img");
	check(".page_contact #footer .menu01 .menu_btn_08 img");
	
	
	function check(_str)
	{
		if($(_str).attr("src"))
		{
			$(_str).attr("src", $(_str).attr("src").replace("_off.", "_on."));
		}
	}
	
	
  if(document.getElementsByTagName) {  
    var tags = ["img","input"];  
    var len = tags.length;  
    for( var i=0; i<len; i++ ) {  
      var el = document.getElementsByTagName(tags[i]);  
      var len2 = el.length;  
      for(var j=0; j<len2; j++) {  
        var attr = el[j].getAttribute("src");  
        if( attr ) {  
          if(el[j].getAttribute("src").match(/_off\./))  
          {  
            el[j].onmouseover = function() {  
              this.setAttribute("src", this.getAttribute("src").replace("_off.", "_on."));  
            }  
            el[j].onmouseout = function() {  
              this.setAttribute("src", this.getAttribute("src").replace("_on.", "_off."));  
            }  
          }  
        }  
      }  
    }  
  }  
}
