//================================================================
// Initialize jQuery plugins etc. for UI elements
//================================================================

$(document).ready(function() {
	$('.header').click(function() {
		$(".header > ul").css('display','block');
	});
	$(".header > ul").mouseleave(function(){$(".header > ul").css('display','none');});
});

$(document).ready(function() {
	if ($(".popup").length ) {
	
		$(".popup").fancybox({
		'type' : 'iframe',
		'scrolling' : 'no',
		'width' : 680,
		'height' : 400,
		'autoScale' : false,		  
		'padding' : 0,
		'overlayShow' : false,
		'transitionIn' : 'elastic',
		'speedIn' : 200,
		'transitionOut' : 'elastic',
		'enableEscapeButton' : true,
		'titleShow' : false
		});	
	}

});



