$(document).ready(function() {
	$(".next.active img").hover(
		function() {
			$(this).attr("src", "images/next_hover.gif");
		},
		function() {
			$(this).attr("src", "images/next.gif");
		}
	);
	$(".prev.active img").hover(
		function() {
			$(this).attr("src", "images/prev_hover.gif");
		},
		function() {
			$(this).attr("src", "images/prev.gif");	
		}
	);
});
