$(document).ready(function() {
	
	// links on different element
	$('.encart_special dl,.encart_coupcoeur ul li,.encart_listoffre dl,.encart_listoffre2 dl,.encart_minutes dl').click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});
	$('.encart_special dl dd a,.encart_listoffre dl dd a,.encart_listoffre2 dl dd a,.encart_minutes dl a,.encart_listoffre3 dl dd a').hide();

//the property lenght used here to check if 'last_minutes' exists

if ($('#last_minutes').length)
{
    alert('last minutes appeles de home.js');    
    $("#last_minutes").load("ajax/ajax_dernieres_minutes.php", function() { 
		$('.encart_minutes dl').click(function(){
	    	window.location=$(this).find("a").attr("href");return false;
		});
		$('.encart_minutes dl a').hide();
	}); 
}

//encart_listoffre3_type_destination
//the property lenght used here to check if 'encart_listoffre3_type_destination' exists
if ($('#encart_listoffre3_type_destination').length)
{    
    //alert(document.location);
    $("#encart_listoffre3_type_destination").load("ajax/ajax_type_destination_offres.php", function() { 
    	
		$('.encart_listoffre3 dl').click(function(){
	    	window.location=$(this).find("a").attr("href");return false;
		});
		$('.encart_listoffre3 dl a').hide();
	}); 
}


//encart_listoffre3_thematique
//the property lenght used here to check if 'encart_listoffre3_thematique' exists
if ($('#encart_listoffre3_thematique').length)
{    
    //alert(document.location);
    $("#encart_listoffre3_thematique").load("ajax/ajax_thematique_offres.php", function() { 
		$('.encart_listoffre3 dl').click(function(){
	    	window.location=$(this).find("a").attr("href");return false;
		});
		$('.encart_listoffre3 dl a').hide();
	}); 
}

//encart_listoffre3_destination
//the property lenght used here to check if 'encart_listoffre3_destination' exists
if ($('#encart_listoffre3_destination').length)
{    
    //alert(document.location);
    $("#encart_listoffre3_destination").load("ajax/ajax_destination_offres.php", function() { 
		$('.encart_listoffre3 dl').click(function(){
	    	window.location=$(this).find("a").attr("href");return false;
		});
		$('.encart_listoffre3 dl a').hide();
	}); 
}


//encart_listoffre3_etablissement
//the property lenght used here to check if 'encart_listoffre3_etablissement' exists
if ($('#encart_listoffre3_etablissement').length)
{    
    //alert(document.location);
    $("#encart_listoffre3_etablissement").load("ajax/ajax_etablissement_offres.php", function() { 
		$('.encart_listoffre3 dl').click(function(){
	    	window.location=$(this).find("a").attr("href");return false;
		});
		$('.encart_listoffre3 dl a').hide();
	}); 
}


});
