// JavaScript Document
$(document).ready(function(){
	$("#menu_ppal img").each(function(index,element){
		if ($(this).attr("class") == 'menu_selected'){
			this.src = this.src.replace(".png","_hover.png");					   
		} else {
			$(this).hover(
				function(){
					this.src = this.src.replace(".png","_hover.png");					   
				}, function(){
					this.src = this.src.replace("_hover.png",".png");					   
				});		
		}
	});					   
});

/*
$(document).ready(function(){
	$("#banner_ofertas_main img").each(function(index,element){
		if ($(this).attr("class") == 'menu_selected'){
			this.src = this.src.replace(".jpg","_hover.jpg");					   
		} else {
			$(this).hover(
				function(){
					this.src = this.src.replace(".jpg","_hover.jpg");					   
				}, function(){
					this.src = this.src.replace("_hover.jpg",".jpg");					   
				});		
		}
	});					   
});
*/
