window.addEvent('domready', function(){
			
	if(document.location.pathname.contains("index.html") || document.location.pathname == "/"){
		$('home_btn').setProperty('src', 'images/ES/menu_over_03.jpg');
	}
	if(document.location.pathname.contains("about_us.html")){
		$('about_us_btn').setProperty('src', 'images/ES/menu_over_04.jpg');
	}
	if(document.location.pathname.contains("clients.html")){
		$('clients_btn').setProperty('src', 'images/ES/menu_over_05.jpg');
	}
	if(document.location.pathname.contains("credit.html")){
		$('credit_btn').setProperty('src', 'images/ES/menu_over_06.jpg');
	}
	if(document.location.pathname.contains("contact.html")){
		$('contact_btn').setProperty('src', 'images/ES/menu_over_07.jpg');
	}
	
	if(document.location.pathname.contains("faq.html")){
		$('faq_btn').setProperty('src', 'images/ES/menu_over_08.jpg');
	}
	
	new Ajax('visits.php', {method: 'get', update: $('visits')}).request();
});

window.addEvent('load', function(){
	new Asset.images(['images/ES/menu_over_03.jpg', 'images/ES/menu_over_04.jpg', 'images/ES/menu_over_05.jpg', 'images/ES/menu_over_06.jpg', 'images/ES/menu_over_07.jpg','images/ES/menu_over_08.jpg'], {onComplete: function(){
	new ButtonIMG($('home_btn'), {srcOver: 'images/ES/menu_over_03.jpg'});
	new ButtonIMG($('about_us_btn'), {srcOver: 'images/ES/menu_over_04.jpg'});
	new ButtonIMG($('clients_btn'), {srcOver: 'images/ES/menu_over_05.jpg'});
	new ButtonIMG($('credit_btn'), {srcOver: 'images/ES/menu_over_06.jpg'});
	new ButtonIMG($('contact_btn'), {srcOver: 'images/ES/menu_over_07.jpg'});
	new ButtonIMG($('faq_btn'), {srcOver: 'images/ES/menu_over_08.jpg'});
		
	}});
	
	
}); 

