$(document).ready(function(){
	// Initialize menus
	$('ul#primaryNav').superfish({ 
		animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
		speed:       'fast',                          // faster animation speed 
		autoArrows:  false,                           // disable generation of arrow mark-up 
		dropShadows: false                            // disable drop shadows 
	});
	//Open external links in a new window
	$("a[href^=http]").click(function(){
		if(!$(this).hasClass("sameWindow"))
		{
		window.open(this.href);
		return false;
		}
	});
	//Open PDFs in a new window
	$("a[href*='.pdf']").click(function(){
		window.open(this.href);
		return false;
	});
	//Open Commonspot uploaded documents in a new window
	$("a[href*='loader.cfm']").click(function(){
		window.open(this.href);
		return false;
	});
	//Fix for CommonSpot nested lists
	$("li ul").parent().css("background-image", "none");
});


