$(document).ready(function(){
	// Initialize menus
	$('ul#primaryNav').superfish({ 
		animation:   {opacity:'show',height:'show'},
		speed:       'fast',
		autoArrows:  false,
		dropShadows: false
	});
	//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");
});


