// JavaScript Document
$(document).ready(function(){
	$(".zoom-slideshow").fancybox({
		'padding'			: 0,
		'titleShow'			: false,
		'width'				: 800,
		'height'			: 544,
		'type'				: 'iframe',
		'scrolling' 		: 'no',
		'overlayOpacity'	: 0.9,
		'overlayColor'		: '#000'
	});
	
	$(".zoom-video").fancybox({
		'padding'			: 0,
		'titleShow'			: false,
		'width'				: 800,
		'height'			: 500,
		'type'				: 'iframe',
		'scrolling' 		: 'no',
		'overlayOpacity'	: 0.9,
		'overlayColor'		: '#000'
	});
	
	$(".zoom").fancybox({	
		'scrolling' 		: 'no',
		'overlayOpacity'	: 0.9,
		'overlayColor'		: '#000'
	});

	
	$('#navigation-sidebar ul li').mouseenter(function(){
		
		$(this).children('ul').stop(true, true).slideDown();
	}).mouseleave(function(){
		
		$(this).children('ul').stop(true, true)
		.slideUp();
	});

});
