$(document).ready(function()
{
	//esconde o sub-menu
	$('#nav2 li ul',this).hide('normal');
	
	// abrir sem o titulo
	$("a.fancybox").fancybox({
		'titleShow'		: false
	});
	
	$(".wp-caption a").fancybox({
		'titleShow'		: false
	});
	
	// fancybox iframe
	$("a.iframe").fancybox({
		'width'				: '75%',
		'height'			: '90%',
		'autoScale'			: false,
		'transitionIn'		: 'true',
		'transitionOut'		: 'true',
		'type'				: 'iframe'
	});
	
	//Fading menu
	$('#nav2 li.cat-item').hover(function() {
		// Will be executed when the mouse roll over the element
	    $('ul', this).fadeIn('normal');
	},function() {
		$('ul', this).fadeOut('normal');
	});
});
