$(document).ready(function(){
$('a.external').click(function(){
        window.open(this.href);
        return false;
    });
//Rotating Text in Mast
	$(".mast-head").newsticker();
//Bio QC Form	
	$(".qc-hidden").hide();                                 
                // Show the hidden fields
                $("textarea,.submitBTN").focus(function() {                                   
                   $(".qc-hidden").fadeIn("slow");
                });
                // If you click any of the defined elements below you will close the open fields. 
                $("#bluebox,#qc,#mast,#header,#phone,#top-navigation,#chooseVideo,#left-column,#disclaimer,#sitemap,#headings,#quotes").click(function(){
                    $(".qc-hidden").fadeOut();
                });

//Top Nav
	$("ul.sf-menu")
		.superfish({
			animation : { opacity:"show"}
	});
		
});