jQuery(function($) {	
	$('#bottom-nav > ul > li').not('.no-dd').hover(
		function() {
			$(this).find('.dropdown:eq(0)').show();
			$(this).addClass('active');				
		},
		function() {
			$(this).find('.dropdown:eq(0)').hide();			
			$(this).removeClass('active');					
		}
	);
	// external links open in new windows
	$('a[href^="http://"], a[href^="https://"]')
        .attr({
            target: "_blank", 
            title: "Opens in a new window"
        })
});

