// Document Ready
jQuery(document).ready( function()
{
	
	//open a new window with class "_blank"
	jQuery(function(){
		jQuery("a[href$='.pdf'], ._blank").click(function(){
			var newwindow = window.open(this.href, '_blank');
			newwindow.focus();
			return false;
		});
	});
	
	// QC Contact 
	jQuery(".qc-hidden").hide(); 		
	jQuery("#text-area").focus(function() {		   
	   jQuery(".qc-hidden").fadeIn("slow");
	});
	
	jQuery("#qc .submit").hover(
	function () {
		jQuery(this).stop().addClass("hover");
	}, 
	function () {
		jQuery(this).stop().removeClass("hover");
	}
	);

	jQuery("#top-navigation ul").superfish({
		animation:{opacity:'slideUp',height:'show'}
	});	

});



