// fancybox	
		$(document).ready(function() {

			$("a.fancybox").fancybox({
				'titleShow'			: true,
				'titlePosition'		: 'outside',
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'speedIn'			: 250,
				'speedOut'			: 250,				
				'showNavArrows'		: false,
				'centerOnScroll'	: true 
			});
			
			$("a.fancybox_iframe").fancybox({
				'width'				: '91%',
				'height'			: '91%',
				'autoScale'			: false,
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'speedIn'			: 250,
				'speedOut'			: 250,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe',
				'titleShow'			: true,
				'titlePosition'		: 'over',
				'showNavArrows'		: false,
				'centerOnScroll'	: true 
			});
			
			$("a.fancybox_sound").fancybox({
				'width'				: 620,
				'height'			: 240,
				'autoScale'			: false,
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'speedIn'			: 250,
				'speedOut'			: 250,
				'type'				: 'iframe',
				'titleShow'			: false,
				'showNavArrows'		: false,
				'centerOnScroll'	: true 
			});
			
		});
// fancybox stop		
		
// hover		
    $(document).ready(function() {
        $("dl").each(function() {
            $(this).hover(function() {
                $(this).stop().animate({ opacity: 0.75 }, 300);
            },
           	function() {
               $(this).stop().animate({ opacity: 1.0 }, 300);
           });
        });
    });
// hover stop
