$(document).ready(function() {
						   
	$('span.mailme').mailme();
	
	$('ul.menu').superfish({ 
		delay:       1000,                            // one second delay on mouseout 
		animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
		autoArrows:  false                            // disable drop shadows 
    }); 
	
	$('#selectall').click(function(){
		$("INPUT[type='checkbox']").attr('checked', true);
		$('#selectnone').show();
		$('#selectall').hide();
	});
	
	$('#selectnone').click(function(){
		$("INPUT[type='checkbox']").attr('checked', false);
		$('#selectall').show();
		$('#selectnone').hide();
	});
	
	$(".fancybox").fancybox({
			'width'				: '75%',
			'height'			: '75%',
			'autoScale'     	: false,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'type'				: 'iframe'
	});
});

