$(function(){ 
  $("#left_gallery .first li:last").css("border", "none");
	$(".second .next, .second .prev, .scroll .left_prev, .scroll .right_next").each(function(){
		var img = $(this);
		var _loader = new Image();
		$(_loader).attr("src", img.attr("src").replace(".jpg", "_on.jpg"));
	});

	$(".second .next, .second .prev, .scroll .left_prev, .scroll .right_next").hover(
		function(){
			$(this).attr("src", $(this).attr("src").replace(".jpg", "_on.jpg"));
		},function(){
			$(this).attr("src", $(this).attr("src").replace("_on", ""));
	});
});
