$(document).ready(function() {
	$('#flechas_prim a').bind("mouseenter",function(){
		$('#flechas_prim a img').get(0).src = '../img/principal/primero_hover.gif';
	}).bind("mouseleave",function(){
		$('#flechas_prim a img').get(0).src = '../img/principal/primero_ac.gif';
	});

	$('#flechas_ant a').bind("mouseenter",function(){
		$('#flechas_ant a img').get(0).src = '../img/principal/anterior_hover.gif';
	}).bind("mouseleave",function(){
		$('#flechas_ant a img').get(0).src = '../img/principal/anterior_ac.gif';
	});

	$('#flechas_sig a').bind("mouseenter",function(){
		$('#flechas_sig a img').get(0).src = '../img/principal/siguiente_hover.gif';
	}).bind("mouseleave",function(){
		$('#flechas_sig a img').get(0).src = '../img/principal/siguiente_ac.gif';
	});

	$('#flechas_ult a').bind("mouseenter",function(){
		$('#flechas_ult a img').get(0).src = '../img/principal/ultimo_hover.gif';
	}).bind("mouseleave",function(){
		$('#flechas_ult a img').get(0).src = '../img/principal/ultimo_ac.gif';
	});
	
});