// Document Ready
jQuery(document).ready( function(){
	
	//open a new window with class "_blank"
	jQuery("a[href$='.pdf'], ._blank").click(function(){
		var newwindow = window.open(this.href, '_blank');
		newwindow.focus();
		return false;
	});
		
	// Fades 
	jQuery(".fade span").css("opacity","0");
		jQuery(".fade span").hover(
			function () {
			jQuery(this).stop().animate({
			opacity: 1
			}, "slow");
		}, 
		function () {
			jQuery(this).stop().animate({
			opacity: 0
			}, "slow");
		}
	);

	
});
