/**
 * EVENTS
 * http://www.events-family.fr/
 *
 * Copyright (c) 2010 Julien Le Bren (julien.lebren@createurdimage.fr)
 * Créateur d'Image - http://www.createurdimage.fr
 *
 * Version: 1.0
 * Création: 2010-03-05
 * Modification : 2010-03-05
 */
 
$(function() {
	resize();
});

window.onresize = resize;

function resize() 
{ 
	var window_width = $(window).width();
	$('#content').css('margin-left','auto');
	
	if(window_width%2 != 0) {
		var position = $('#content').position();
		var new_position = Math.round(position.left);
		//alert(position.left);
		$('#content').css('margin-left',new_position);
	}
}