$(document).ready(function () { 
	
	// batiment / travaux_publics / industrie / transport / tertiaire
	
	var domaines = ['batiment', 'travaux_publics', 'industrie', 'transport', 'tertiaire'];
	
	for(var i=0;i<domaines.length;i++) {
		var elt = $('#doc.c-offres.a-index.p0-' + domaines[i] + ' a.'+domaines[i]);
		if(elt.length) {
			elt.addClass('active');
			break;
		}
	}

	$('#offres dl.offre').click(function () {
		window.location.replace($(this).find("a").attr('href'));
	});
	
	
	
	$('#offres dl.offre').mouseover(function () {
		$(this).addClass('hover');
	});

	$('#offres dl.offre').mouseout(function () {
		$(this).removeClass('hover');
	});

});
