$(document).ready(function() {
	
	// Navigation menu

	$('.hlist ul').superfish({ 
		delay:       1000,
		animation:   {opacity:'show',height:'show'},
		speed:       'fast',
		autoArrows:  true,
		dropShadows: false
	});
	
	$('.hlist li').hover(function(){
		$(this).addClass('sfHover2');
	},
	function(){
		$(this).removeClass('sfHover2');
	});
	
	//opens url in new window
	$('a[rel*=external]').click( function() {
	    window.open(this.href);
	    return false;
	});
	
	
	

});
