$(document).ready(function(){
	$('#loopedSlider').loopedSlider();
	bindBehaviors(this);
});	
function bindBehaviors(scope) {
	$("#en").hover(
		function(){$(this).text("global english");},
		function(){$(this).text("globish");}
	);
	$("#fr").hover(
		function(){$(this).text("french touch");},
		function(){$(this).text("fran\347ais");}
	);
	
	/*$(".thumbs").click(function(){
		split_name = $(this).attr("name").split('%_%');
		var id = split_name[0];
		var name = split_name[1];
		var titre = $(this).attr("title");
		var chapeau = $(this).attr("alt");
		var width = Math.round($(this).attr("width")* 2.5);*/
		/*$("#photo").replaceWith("<div id='photo' style='background-image:url(photos/"+name+");'><div id='cache_gauche'></div><div id='cache_droite' style='width:"+width+"px'><a href='articles.php?id="+id+"'><img src='images/none.gif' width="+width+"/></a></div></div>");*/
		/*$("#photo").replaceWith("<div id='photo' style='background-image:url(photos/"+name+");'><div id='cache_gauche'></div><div id='cache_droite' style='width:"+width+"px'></div></div>");*/
		/*$("#description_lieu").replaceWith("<div id='description_lieu'><table width='86%' height='210' align='right'><tr><td valign='middle' align='right'><h1><a href='articles.php?id="+id+"' target='_self'>"+titre+"</a></h1><p><a href='articles.php?id='"+id+"' target='_self'>"+chapeau+"</a></p></td></tr></table></div>");*/
		/*$("#description_lieu").replaceWith("<div id='description_lieu'><table width='86%' align='right'><tr><td valign='middle' align='right'><h1>"+titre+"</h1><p>"+chapeau+"</p></td></tr></table></div>");*/
	//});
	$(".photo").click(function(){
		split_name = $(this).find(".thumb").attr("name").split('%_%');
		var id = split_name[0];
		var name = split_name[1];
		var auteur = split_name[2];
		var titre = $(this).find(".thumb").attr("title");
		var chapeau = $(this).find(".thumb").attr("alt");
		var width = Math.round($(this).find(".thumb").attr("width")* 2.5);
		$("#photo").replaceWith("<div id='photo' style='background-image:url(../photos/"+name+");'><div id='cache_gauche'></div><div id='cache_droite' style='width:"+width+"px'><a href='http://www.wheresciences.com/articles.php?id="+id+"'><img src='../images/none.gif' width='"+width+"' height='187' title='"+titre+"' alt='"+chapeau+"'/></a><div id='auteur'><a href='http://www.wheresciences.com/articles.php?id='"+id+"'>&copy; "+auteur+"</a></div></div>");
		
		$("#description_lieu").replaceWith("<div id='description_lieu'><table width='86%' align='right'><tr><td valign='middle' align='right'><h1>"+titre+"</h1><p>"+chapeau+"</p></td></tr></table></div>");
	});
}