/**
 * Hide/Show Content
 */
function hideElement(d) { document.getElementById(d).style.display  = "none"; ev.preventDefault(); }
function showElement(d) { document.getElementById(d).style.display  = ""; ev.preventDefault(); }

/*** 
    FANCY BOX
***/
$(document).ready(function() {
	$("#iframe").fancybox({
		'width'				: 850,
		'height'			: 500,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'showCloseButton'	: false,
		'type'				: 'iframe',
		'overlayOpacity'	: 0.6,
		'overlayColor'		: "#000",
		'scrolling' 		: 'no'
	});
	
	$("#commercial").fancybox({
		'width'				: '100%',
		'height'			: '100%',
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'showCloseButton' : false,
		'type'				: 'iframe',
		'overlayOpacity'	: 0.6,
		'overlayColor'		: "#000",
		'scrolling' 		: 'no'
	});	
	
	$('img.menu_class').click(function () {
		$('ul.the_menu').slideToggle('medium');
	});
});
