/*******************************************************************************************/	
// Wordpress theme : dw19ht - version 1.0
// Author: MrRayures (http://www.mr-rayures.com)
// Created: 12-07-2010
//
/*******************************************************************************************/
$(document).ready(function(){

	// Callage des links
	$(".links li").each(function(){
		var blocLinkH = $(this).height();
		//alert(index + ': ' + $(this).height());

		var maginTop = (blocLinkH/2) -25;
		$('.link_title',this).css({'margin-top':maginTop})
	});

});
