//Iconos home
jQuery(document).ready(function() {
$("#rollover-prin01").hover(
	function() {
	this.src = this.src.replace("_out_01","_over_01");
	},
	function(){
	this.src = this.src.replace("_over_01","_out_01");
	}
	);
});
jQuery(document).ready(function() {
$("#rollover-prin02").hover(
	function() {
	this.src = this.src.replace("_out_02","_over_02");
	},
	function(){
	this.src = this.src.replace("_over_02","_out_02");
	}
	);
});
jQuery(document).ready(function() {
$("#rollover-prin03").hover(
	function() {
	this.src = this.src.replace("_out_03","_over_03");
	},
	function(){
	this.src = this.src.replace("_over_03","_out_03");
	}
	);
});
//Icono Home
jQuery(document).ready(function() {
$("#rollover-secc00").hover(
	function() {
	this.src = this.src.replace("_out","_over");
	},
	function(){
	this.src = this.src.replace("_over","_out");
	}
	);
});
//Iconos secciones
jQuery(document).ready(function() {
$("#rollover-secc01").hover(
	function() {
	this.src = this.src.replace("_out_01","_over_01");
	},
	function(){
	this.src = this.src.replace("_over_01","_out_01");
	}
	);
});
jQuery(document).ready(function() {
$("#rollover-secc02").hover(
	function() {
	this.src = this.src.replace("_out_02","_over_02");
	},
	function(){
	this.src = this.src.replace("_over_02","_out_02");
	}
	);
});
jQuery(document).ready(function() {
$("#rollover-secc03").hover(
	function() {
	this.src = this.src.replace("_out_03","_over_03");
	},
	function(){
	this.src = this.src.replace("_over_03","_out_03");
	}
	);
});
jQuery(document).ready(function() {
$("#rollover-secc04").hover(
	function() {
	this.src = this.src.replace("_out_04","_over_04");
	},
	function(){
	this.src = this.src.replace("_over_04","_out_04");
	}
	);
});


