$(document).ready(function(){
$('a.external').click(function(){
        window.open(this.href);
        return false;
    });
//Top Nav
	$("ul.sf-menu")
		.superfish({
			animation : { opacity:"show"}
	});
//Side Nav
		$("ul.sf-menu-side")
		.superfish({
			animation : { opacity:"show"}
	});
//Text Next to the Flash Banner	
	$(".mast-head").newsticker();
//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. 
                $("#quoting,#mast,#header,#top-navigation,#left-column,#bottomRegion,#footer").click(function(){
                    $(".qc-hidden").fadeOut();
                });

//Sitemap
	$('#sitemap').hide();

	$('a#toggle-sitemap').click(function() {
	  $('#sitemap').toggle(400);
	  return false;
	});
		
});