/**
 * @version  1.00
 * @updated  2008/10/03
 */


if ($.browser.safari && $.browser.version < 500) {
	$(window).load(function () {
		table();
	});
}
else {
	$(document).ready(function () {
		table();
	});
}


function table() {
	var num = $("div#informations_en table:last").children("tbody").children("tr").size();
	
	if ( num % 2 == 0 ) {
		$("div#informations_en table").each(function(){
			$(this).children("tbody").children("tr:even").each(function(){
				this.className = "st";
			});
		});
	} else {
		$("div#informations_en table").each(function(){
			$(this).children("tbody").children("tr:odd").each(function(){
				this.className = "st";
			});
		});		
	}
}