/* Author: 

*/



$(document).ready(function () { 
     
    $('#nav li').hover(
        function () {
            //show its submenu
            $('ul', this).slideDown(100);
 
        }, 
        function () {
            //hide its submenu
            $('ul', this).slideUp(100);         
        }
    );
    
    $('#theImageNavigation a').hover(
      function() {
        $('span', this).fadeIn(300);
      },
      function() {
        $('span', this).fadeOut(300);        
      }
    );
    
    $("#slideshow a.pop").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});
    
    
     
});




















