var Slogan = function(el,mx)
{
	curWidth = el.width();
	curHeight = el.height();
	maxWidth = mx;
	bloc = el.find('div');
	if( bloc.text() )
	{
		if( curWidth > mx ) curWidth = mx;
		el.css({ height : curHeight , opacity : 0.85 });
		bloc.css({ width : "0px", visibility : "hidden" });
		el.animate(
			{ width : curWidth + "px"},
			"slow",
			function(){
				bloc.css({ display : 'none' , visibility : 'visible', width : curWidth + "px" });
				bloc.fadeIn();
			}
		);
	}
	else el.hide();
}
