// Document Ready

jQuery(document).ready(function(){
	
	jQuery("a.anchorLink").anchorAnimate();
	
	jQuery("a[href$='.pdf'], ._blank").click(function(){
		var newwindow = window.open(this.href, '_blank');
		newwindow.focus();
		return false;
	});

	jQuery('#mast-inner').cycle({ 
		fx:     'scrollnone', 
		speed:  500, 
		next: '.next',  
    		prev: '.prev', 
		timeout: 15000,
		pause: true
		
	});
	

	jQuery(".fade span, .fade a").stop().animate({opacity: 1});
	jQuery(".fade span").hover(
		function () {
			jQuery(this).stop().animate({opacity: 0});
		}, 
		function () {
			jQuery(this).stop().animate({opacity: 1});
		}
	);
	
	jQuery("a[@class*=print]").click(function() {
		window.print();
		return false;
	});

	

});
