

jQuery(document).ready(function(){

jQuery("#right_column").html('');

//load right column cntent
jQuery("#right_column").load(rightColumnUri,'',function() {

//set the right font-size
jQuery(".iframe").css({ fontSize:"1em"});

//we load the day date, the today trailer is the first one
manage_trailer_nav(0,"");

//then launch the video
//loadFile('artetv_trailer',{file:'http://download.www.arte.tv/permanent/c0/teaser/'+video_date[id_date]+'_fr.FLV',javascriptid:'artetv_trailer_player',click_link:'',autostart:'true',width:'240',height:'180',volume:'0'});





//be sure not to load the javascript each time the website is called

$.ajaxSetup({ cache: true });

jQuery.getScript("/fr/2150258,templateId=renderJs,property=data,v=23,CmPart=com.arte-tv.www.js", function(){});

$.ajaxSetup({cache: false});

openElements();
});



//roll over display mode
jQuery("a#column_display img").mouseover(function(){

	if(jQuery(this).attr("src").indexOf("off") != -1) {
	var oldSrc = jQuery(this).attr("src").replace("off","on");
	jQuery(this).attr("src",oldSrc);
	}
});

jQuery("a#column_display img").mouseout(function(){				  
	var newSrc = jQuery(this).attr("src").replace("on","off");
	jQuery(this).attr("src",newSrc);
});



});
