$(document).ready( function() {
														
														
  $('a[rel="external"]').click(function() {
		window.open($(this).attr('href'));
		return false;
  });



  $(".blocmetier").click(function() {
    var link = $(this).find("a").attr("href")
    if ( link ) {
			document.location.href = $(this).find("a").attr("href");
		}
  }).hover(function() {
    $(this).addClass('hover').css("cursor","pointer");
  }, function() {
    $(this).removeClass('hover');
  });
	
	
	
	$('a.arrow_link').click(function(evt) {
		evt.stopPropagation();
		return true;
	});

	$('ul.clickable_li li:first').addClass('first');
	$('ul.clickable_li li:nth-child(2)').addClass('left');
	$('ul.clickable_li li:nth-child(5)').addClass('left');
	$('ul.clickable_li li:nth-child(8)').addClass('left');

});


$(function(){
	$(".blocmlketier").mouseover(function(){
		$(this).css("cursor","pointer").find("a").css("text-decoration","none");
	}).mouseout(function(){
		$(this).find("a").css("text-decoration","none");
	}).click(function(e){
		document.location.href = $(this).find("a").attr("href");
	e.preventDefault();
	});
});
