$(document).ready(function() {
		$('a.external').attr('target', '_blank');
		
		/* // Show and hide menus
		$('#wrapper #navMain ul li ul').hide();  
		$('#wrapper #navMain ul li').hover(
			function(e)
			{
				$(this).find('ul').focus().stop(true, true).slideToggle('medium');
			},
			function(e)
			{
				$(this).find('ul').stop(true, true).slideToggle('medium');
			}		
		); */
	});	
	
