$(document).ready(function(){
	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+" height='201' /></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%' height='210' align='right'><tr><td valign='middle' align='right'><h1>"+titre+"</h1><p>"+chapeau+"</p></td></tr></table></div>");
	});
}