    $(document).ready(function(){
							   
							   $("ul.main_navigation li a ").mouseover(function() { 
		
        $(this).parent().find("ul.subnav").fadeTo("fast", 1);
  
        $(this).parent().hover(function() {  
        }, function(){ 
			$(this).parent().find("ul.subnav").css("display", 'none'); 
			
        });  
  
       
        }).hover(function() {  
            $(this).addClass("subhover"); 
        }, function(){
            $(this).removeClass("subhover");
    });  
							   
        $(".speech_photo a").fancybox({
				'titleShow'		: false,
				'transitionIn'	: 'elastic',
				'padding'	: '0',
				'transitionOut'	: 'elastic'
			});
		

		$(".map").fancybox({
'width' : 680,
'height': 670, 
'type' : 'iframe', 
'padding'	: '0'
                   }); 
		
		
    })

