// JavaScript Document


$(document).ready(function(){

	$('.submenu_bot ul').slideUp(100);
	//MENU DESPLEGABLE 
	$('.submenu_bot').hover(
		function () {
		//show its submenu
		
			$('ul', this).slideDown(210);
		},
		function () {
			//hide its submenu
			$('ul', this).slideUp(100);
		}); 
}); 


$(document).ready(function() {


	
	/* Using custom settings */
	
	$("a#inline").fancybox({
		'hideOnContentClick': true,
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'overlayOpacity': 0.8

	});
	$("a#inline2").fancybox({
		'hideOnContentClick': true,
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'overlayOpacity': 0.8

	});

	/* Apply fancybox to multiple items */
	

});


