
function menuclick(id){
	if(document.getElementById('mnul_'+id)){
		if(document.getElementById('mnul_'+id).style.display=='none'){
			document.getElementById('mnul_'+id).style.display='';
		}
		else{
			document.getElementById('mnul_'+id).style.display='none';
		}
		document.getElementById('mna_'+id).removeAttribute('href'); 
		return false;
	}
	else{
		return true;
	}
}

/*$('#nlemail').alphanumeric({allow:".@"});
$('.mail').alphanumeric({allow:".@"});
$('.name').alphanumeric({allow:".- "});
$('.phone').numeric({allow:"./- "});
$('#sinput').alphanumeric({allow:"., "});
$('#event_start').numeric({allow:""});
$('#event_end').numeric({allow:""});
*/


$(document).ready(function(){

//galeria start    
$("a.group").fancybox({
        'hideOnContentClick': false, 
        'easingIn' : 'easeOutBack',
        'easingOut' : 'easeInBack'
});
//galeria end  	

 });

