$(document).ready(function(){
						   
	//Lien sur les blocs de fiche
	$(".fiche-box").each(function(){
		//Mouse event
		$(this).hover(function(){
			$(this).css('cursor','pointer');
			$(this).children().each(function(){
				$(this).css('text-decoration','line-through');
			});
		}, function(){
			$(this).css('cursor','auto');
			$(this).children().each(function(){
				$(this).css('text-decoration','none');
			});
		});
		
		//Get url
		var url = $(this).attr("title");
		$(this).removeAttr("title");
		
		//Click action
		if(url) {
			$(this).click(function(){
				window.location = url;
			});
		}		
	});
	
	// Ajustements de styles
	if($("div#content-address")) {
		$("div#content-address div:last").css("width", "350px");
	}
	if($("div#content-link")) {
		$("div#content-link div.contenu:first").css("margin-right", "20px");
	}
	
	/*function adjustBody() {
		var htmlHeight = $(document).height();
		var windowHeight = $(window).height();
		var ie6 = ( ($.browser.msie && jQuery.browser.version == "6.0") ? true : false );
		//alert("HTML: "+htmlHeight+" | Window: "+windowHeight);
		if(!ie6) {
			$("body").css("height", htmlHeight);
		}
	}
	$(window).resize(function(){
		adjustBody();
	});
	adjustBody();*/
});