var scripts = {
	init: function () {
		$('#login').submit(function () {
			
			if(($('#pseudo').val().length == 0) || ($('#pwd').val().length == 0)) {
				alert('Veuillez remplir les champs obligatoires');
				return false;
			}
			return true;
		});
		
		// Gestion du voile
		$('#calque_trans').css('height', $('body').height()+'px');
		$("#calque_trans").fadeTo("fast", 0.7);
		
		// ouverture popup
		$('.popup').click(function () { if($(this).attr('href')) {
			window.open($(this).attr('href'),'pop','width=1024,height=800,toolbar=1,menubar=1,location=1,status=1,scrollbars=1,resizable=1,directories=1');
			return false;
		}});
	}
}
$(document).ready(
	scripts.init
);