$(document).ready(function() {
	var matches = document.location.href.match('#offre(.*)');
	if (matches && matches[1]) {
		maroc_offre_popup(matches[1]);
	}

	$("select#lang").change(function() {
		document.location.href = '/offres.php?lang=' + $(this).val();
	});
});

maroc_offre_popup = function(id) {
	$('#offre-' + id + '-popup-link').click();
}
