﻿if(typeof LOC == 'undefined') {
	var LOC = {};
}
LOC.afficheNews = function(){
	if(document.getElementById('anim')){
		//multimedia
		var animSwf = LOC.gSite + 'home/anims/' + $('#anim').text();
		//alert('animSwf: ' + animSwf);
		var fo = new FlashObject(animSwf, "news", "687", "386", "8.0.0.0", "#26181D");
		fo.addParam("scale", "noscale");
		fo.addParam("wmode", "transparent");
		fo.addParam("allowScriptAccess", "always");
		fo.addVariable("voirDebug", getQueryParamValue("debug")); 
		fo.addVariable("site", LOC.gSite);
		fo.write("news");
	}
	else{
		var h = document.getElementById('resume').offsetHeight;
		var m = parseInt($('#news .scrollable').css('height'));
		if(h < m){
			$('#news .scrollable').css('height', (h+10)+'px');
		}
	}
}

$(document).ready(function(){
	LOC.afficheNews();
});
