/**
 * Vertical centering javascript function for advert images
 * 
 * @author LALLEMAN Gaël
 * @copyright 2008-2009 Ademis Informatique
 * @package Advert
 * @version 1.0b
 * @todo Code Refactoring - Code documentation
 *
 */

$(document).ready(function(){
	$("#advert div.advertImg a img").each(function (i) {
		this.style.marginTop = ((( $("div.advertImg").height() - this.height) / 2) + "px");
	});
});

