function start(lang){

	$("#last_news").load("http://www.martinez-franch.com/html/news.php?l=" + lang, function() {
		for (var i=1; i<3; i++){
			$("#new" + i).hide();
		}
		mouNews();
		setInterval( rotate, 4000 );
	});
}

function mouNews(){
	$("#last_news").css("top",( $(window).height() - $("#last_news").height() ));
	
}

i = 0; 

function rotate(){
	for (var j=0; j<3; j++){
		(i == j)? $("#new" + j).fadeIn() : $("#new" + j).fadeOut();
	}
	(i<2)?i++ : i=0;
}

$(window).resize(function() {
	mouNews();
});
