// basic show and hide
 	    $(document).ready(function() 
		{                             
		   
		 //hack for god-damnned safari.
			setTimeout(
			     function() {
			       	// this hides the subnav

		    		//$('div.dropWrap').hide();

					// this is for the nav drop downs

					$('li#whoweare').mouseover( function() {
		    			$('div#whoweareDropWrap').show();
						$('a#wwa').css( "background", "url(/img/nav/new_nav_sprite_hovers.gif) 0 -37px no-repeat");
		   			}); 

					$('li#whoweare').mouseout( function() {
		    			$('div#whoweareDropWrap').hide();
						$('a#wwa').css( "background", "none");
		   			});

					$('li#whatwedo').mouseover( function() {
		    			$('div#whatwedoDropWrap').show();
						$('a#wwd').css( "background", "url(/img/nav/new_nav_sprite_hovers.gif) -132px -37px no-repeat");
		   			}); 

					$('li#whatwedo').mouseout( function() {
		    			$('div#whatwedoDropWrap').hide();
						$('a#wwd').css( "background", "none");
		   			});
		
					$('li#portfolio').mouseover( function() {
		    			$('div#portfolioDropWrap').show();
						$('a#pf').css( "background", "url(/img/nav/new_nav_sprite_hovers.gif) -268px -37px no-repeat");
		   			}); 

					$('li#portfolio').mouseout( function() {
		    			$('div#portfolioDropWrap').hide();
						$('a#pf').css( "background", "none");
		   			});
		
					$('li#newsandinfo').mouseover( function() {
		    			$('div#newsandinfoDropWrap').show();
						$('a#nai').css( "background", "url(/img/nav/new_nav_sprite_hovers.gif) -391px -37px no-repeat");
		   			}); 

					$('li#newsandinfo').mouseout( function() {
		    			$('div#newsandinfoDropWrap').hide();
						$('a#nai').css( "background", "none");
		   			});
		
		 			$('li#contact').mouseover( function() {
		    			$('div#contactDropWrap').show();
						$('a#con').css( "background", "url(/img/nav/new_nav_sprite_hovers.gif) -524px -37px no-repeat");
		   			}); 

					$('li#contact').mouseout( function() {
		    			$('div#contactDropWrap').hide();
						$('a#con').css( "background", "none");
		   			});  
		
			     }), 500
                                           
 		});