// JavaScript Document


function equalHeight(group) {
	tallest = 0;
	group.each(function() {
		thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}


$(document).ready(function()
	{
	
	// Langue check
	$('#language').change(function()
		{
		var langue = $(this).val();
		var url = $(this).attr('page');
		document.location.href = url+'?language='+langue;
		});
	
	
	
	$("ul").each(function() {
		$("li:last",this).css("borderBottom","none");
	});
	
	
	
	
	});


