// JavaScript Document
$(document).ready(function(){
	$(".login 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");					   
				});		
		}
	});					   
});


$(document).ready(function(){
	$(".btn_mas 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");					   
				});		
		}
	});					   
});








