$(document).ready(function() {
							
		$("#last_arrow").each(function(){
	
		$(this).stop().delay(1500).animate( {opacity: .4}, { queue:true, duration:750 });


	});	
		$("#next_arrow").each(function(){
	
		$(this).stop().delay(1500).animate( {opacity: .4}, { queue:true, duration:1000 });


	});
							
	$('#last_arrow').mouseover(function()  {
			$('#last_arrow').stop().animate( {opacity: 1}, { queue:true, duration:500 });
			$('#last_box').stop().animate( {opacity: .9}, { queue:true, duration:500 });
	})
	$('#last_arrow').mouseout(function()  {
			$('#last_arrow').stop().animate( {opacity: .4}, { queue:true, duration:500 });
			$('#last_box').stop().animate( {opacity: 0}, { queue:true, duration:500 });
	})
	$('#next_arrow').mouseover(function()  {
			$('#next_arrow').stop().animate( {opacity: 1}, { queue:true, duration:500 });
			$('#next_box').stop().animate( {opacity: .9}, { queue:true, duration:500 });
	})
	$('#next_arrow').mouseout(function()  {
			$('#next_arrow').stop().animate( {opacity: .4}, { queue:true, duration:500 });
			$('#next_box').stop().animate( {opacity: 0}, { queue:true, duration:500 });
	})
	

});
