/* Create ImageFlow instances when the DOM structure has been loaded */
domReady(function()
{
	if(document.getElementById("coupcoeurImageFlow")!=null)
	{
	var instanceOne = new ImageFlow();
	instanceOne.init({ ImageFlowID:'coupcoeurImageFlow',
                   reflections: false, 
				   reflectionP: 0.2,
                   slider: false,
		           circular: true,
                   opacity: true,
                   slideshow: true,
                   slideshowAutoplay: true,
				   slideshowSpeed: 3000,
				   imageFocusM: 1.0,
				   aspectRatio: 3.5
					});
	}
	
AddSiteoftheday($("#container_annuaire"));
});

function AddSiteoftheday(obj)
{
	var d = new Date();
	var myurl = "/view_selection.php?t="+d.valueOf();	
	obj.load(myurl);
}

