$(document).ready(function(){
	$(".previous").hover(function() {
		$(this).attr("src","http://adorre.webuda.com/f/previous_on.png");
			}, function() {
		$(this).attr("src","http://adorre.webuda.com/f/previous_off.png");
	});
	$(".next").hover(function() {
		$(this).attr("src","http://adorre.webuda.com/f/next_on.png");
			}, function() {
		$(this).attr("src","http://adorre.webuda.com/f/next_off.png");
	});
});

