$(function() {
	// Liens nouvelle fenêtre
	$('a.newWindow').click(function(){ window.open(this.href); return false; });
	// Liens retour
	$('a.retour').click(function(){ history.back(); return false; });
	
	$('#menu-vev').hover(function() {
		$('#menu-vev ul').fadeIn('fast');
	}, function() {
		$('#menu-vev ul').fadeOut('fast');
	});
	$('#menu-vev a').click(function() {
		if($(this).attr('href') == "#") return false; 
	});
});
