/**
 * ...
 * @author Matthieu Chavigny
 */
 
$(function() {
	if(!isIos && getvars.v!="html" && readCookie("ts_version")!="html") {
		adaptHtmlForFlash();
		insertFlash("swf/home.swf");
	}
});

// Module news / get from html
function getNbNews() {
	return $(".items .item").size();
}
function getNewsTitle(index) {
	return $("h5", $(".items .item:eq("+index+")")).html();
}
function getNewsDate(index) {
	return $(".date span", $(".items .item:eq("+index+")")).html();
}
function getNewsText(index) {
	return $("p", $(".items .item:eq("+index+")")).html();
}
