$(document).ready(function(){
	
	$('#top .over').hover(
		
		function(){
			$(this).stop().animate({"opacity": "0"}, "medium");	
		},
		
		function(){
			$(this).stop().animate({"opacity": "1"}, "medium");	
		}
	)
	
	$('#pdfHolder a').hover(
		
		function(){
			$(".overPdfImage", this).stop().animate({"opacity": "0"}, "200");	
		},
		
		function(){
			$(".overPdfImage", this).stop().animate({"opacity": "1"}, "200");	
		}
	)
});
