$( document ).ready( function(){
	
	$('#navigation li').hover(
		function(){ $(this).find('.sub-nav').show(); $(this).addClass('hover'); },
		function(){ $(this).find('.sub-nav').hide(); $(this).removeClass('hover'); }
	);
	
	if( jQuery.browser.safari ) {
		$('#navigation .shell').css({ 'width': '830px'});
	}
});
