$(function() {
	$(".connexion").click(function(e) {
		$('#connectionContainer').toggle();
		$('#connectionContainer').css({
				top: ($('#connectionContainer').prev().height() + 18) + 'px',
				left: '730px'
			});
		
		return false;
	});
});
