$(function() 
{
	$('.limenu').mouseover(
	function()
	{
		var cssObj = {
			'background-color' : '#2664e0',
			'color' : '#fff'
		}
		$('#btn_' + this.id).css(cssObj);
		$('#menu_' + this.id).css('display', 'block');
	});
	
	$('.limenu').mouseleave(
	function()
	{
		var cssObj = {
			'background-color' : 'transparent',
			'color' : '#051d4d'
		}
		$('#btn_' + this.id).css(cssObj);
		$('#menu_' + this.id).css('display', 'none');
	});
	
	$('#btn_lireSuite').click(function(){
		window.location.href = "./entreprise-presentation.php";
	});
								
	$('#btn_tracking').click(function(){
		window.location.href = "./services-tracing.php";
	});
	
	$('#btn_gestion').click(function(){
		window.location.href = "./services-stock.php";
	});
	
	$('#btn_transport').click(function(){
		window.location.href = "./services-transport.php";
	});
	
	$('#btn_combirail').click(function(){
		window.location.href = "./services-combi.php";
	});
	
	$('#tabOngletTextes').click(function() {
		$('#ongletConstantes').css('z-index', 1);
		$('#ongletTextes').css('z-index', 2);
	});
	
	$('#tabOngletConstantes').click(function() {
		$('#ongletConstantes').css('z-index', 2);
		$('#ongletTextes').css('z-index', 1);
	});
	
	$('#langueAdmin').change(function() {
		window.location.href = './?langueAdmin=' + this.value ;
	});
	
	$('#pageAdmin').change(function() {
		window.location.href = './?pageAdmin=' + this.value ;
	});
	
	
});