$(document).ready(function() {

	$('li.pub a.texte_pub').each(function(){
		var new_margin = (145 - $(this).height())/2;
		$(this).parent().css("padding-top", new_margin);
	});

	$('.img_pub').each(function(){
		var new_margin = (145 - $(this).height())/2;
		var Name = "zo" + $(this).attr("name");
		$("li[name='" +Name+ "']").attr("style", "padding-top:" +new_margin+"px;");
	});

	$('#images').carousel({
		hide: 'fadeOut', // jquery show / hide effect method name
		show: 'fadeIn', // jquery show / hide effect method name
		duration: 500, // duration of wait in milliseconds
		speed: 2000, // speed in milliseconds, 'slow' or 'fast',
		seed: 5 // length of random classname applied to item to keep things all nice and seperate
				// warning: setting this to something ridiculous will make it take ages to load.
	});
});
