// JavaScript Document

Shadowbox.init();

(function($){
	
    $(document).ready(function() {		
		$('#main-nav:first').children().hover(
    		function(){
        		$('ul', this).css('top', '27px').css('left', '0px');
    		},
    		function(){
        		$('ul', this).css('top', '-200em');
    		}
    	);
		
		$(document).pngFix(); 
    });
})(jQuery);