// 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;
	});
	
	jQuery(".primary-navigation ul").superfish({
		animation:   {opacity:'slideUp',height:'show'}
	});
	
	jQuery(".secondary-navigation ul").superfish({
		animation:   {opacity:'slideUp',height:'show'}
	});
	
	jQuery('#mast-inner').cycle({ 
		fx:     'scrollLeft', 
		speed:  500, 
		pager:  '#nav',
		timeout: 6500,
		pause: true
		
	});
	
	
	/* jQuery(".mast-video-about-us a").attr({href: "video-about-us.html?keepThis=true&TB_iframe=true&height=454&width=561"});
	jQuery(".spanish-mast-video-about-us a").attr({href: "spanish-video-about-us.html?keepThis=true&TB_iframe=true&height=454&width=561"}); */
	
	
	
	// 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");
		}
	);

	
});
