/////////////////////
// Images lightbox //
/////////////////////
$(document).ready(function(){
	$('a[@rel*=lightbox]').lightBox({
            maxHeight: screen.height * 0.6,
            maxWidth: screen.width * 0.6
    });
});

/////////////////////
// Liens images ie //
/////////////////////
$(function(){
	$("div.contenuBloc img").click(function(){
		window.location.href = $(this).parent().parent().attr("href");
	});
});