$(document).ready(function() {
	$('#navtop li').hover(
		function() {
			if (!$(this).hasClass('no-hover') && !$(this).hasClass('actif')) {
				$(this).addClass('over');
			}
		},
		function() {$(this).removeClass('over');}
	);

	$("a.lienMdpOublie").colorbox({width: 500, height: 265, iframe:true, title: function(){ return $(this).text(); }});
	$(".stylish select").sSelect({ddMaxHeight: "300px"});
	$('.lien_annul').click(function(e) {
		e.preventDefault();
		history.go(-1);
	});
/*
	$("#input_password_text").show();
	$("#input_password_pass").hide();

	$("#input_login").focus(function() {
		if ($(this).val() == lib_login) {
			$(this).val("");
		}
	});
	$("#input_login").blur(function() {
		if ($(this).val() == "") {
			$(this).val(lib_login);
		}
	});
	$("#input_password_text").focus(function() {
		if ($(this).val() == lib_mdp) {
			$(this).hide();
			$("#input_password_pass").show().focus();
		}
	});
	$("#input_password_pass").blur(function() {
		if ($(this).val() == "") {
			$(this).hide();
			$("#input_password_text").show();
		}
	});
*/
});

