$(document).ready(function(){
	$('#previous, #next, #pdf').hover(
		function() { $(this).fadeTo('fast',0.7).fadeTo(50,1);}
	);
	$('#previous, #next, #pdf').click(
		function() { $(this).fadeTo('fast',0.7).fadeTo(200,1);}
	);	
});


