jQuery(function($) {
	// Dropdown top menu
	$('#menu .level').hover(
		function(){
			jQuery(this).css('cursor','pointer');
			$('.subnav',$(this)).show();
			//$('.subnav',$(this)).slideDown('fast');
		},
		function(){
			jQuery(this).css('cursor','auto');
			$('.subnav',$(this)).hide();
			//$('.subnav',$(this)).slideUp('fast');
		}
	);

	jQuery("#ce2_Mathématiques").click(function(){
			document.location.href = jQuery("#" + this.id +" > a").attr("href");
	});
	jQuery("#ce2_Français").click(function(){
		document.location.href = jQuery("#" + this.id +" > a").attr("href");
	});
	jQuery("#ce2_Sciences").click(function(){
		document.location.href = jQuery("#" + this.id +" > a").attr("href");
	});
	jQuery("#ce2_Géographie").click(function(){
		document.location.href = jQuery("#" + this.id +" > a").attr("href");
	});
	jQuery("#ce2_Histoire").click(function(){
		document.location.href = jQuery("#" + this.id +" > a").attr("href");
	});
	jQuery("#cm1_Mathématiques").click(function(){
		document.location.href = jQuery("#" + this.id +" > a").attr("href");
	});
	jQuery("#cm1_Français").click(function(){
		document.location.href = jQuery("#" + this.id +" > a").attr("href");
	});
	jQuery("#cm1_Sciences").click(function(){
		document.location.href = jQuery("#" + this.id +" > a").attr("href");
	});
	jQuery("#cm1_Géographie").click(function(){
		document.location.href = jQuery("#" + this.id +" > a").attr("href");
	});
	jQuery("#cm1_Histoire").click(function(){
		document.location.href = jQuery("#" + this.id +" > a").attr("href");
	});
	jQuery("#cm2_Mathématiques").click(function(){
		document.location.href = jQuery("#" + this.id +" > a").attr("href");
	});
	jQuery("#cm2_Français").click(function(){
		document.location.href = jQuery("#" + this.id +" > a").attr("href");
	});
	jQuery("#cm2_Sciences").click(function(){
		document.location.href = jQuery("#" + this.id +" > a").attr("href");
	});
	jQuery("#cm2_Géographie").click(function(){
		document.location.href = jQuery("#" + this.id +" > a").attr("href");
	});
	jQuery("#cm2_Histoire").click(function(){
		document.location.href = jQuery("#" + this.id +" > a").attr("href");
	});





	jQuery(".level").click(function(){
		document.location.href = jQuery("#" + this.id + " > a").attr("href");
	});


})

