$(function() {
	$("div#controls").text("");
	
	$("a.wrapper").live("mouseover", function() {
		var title = $(this).attr("lngText");
		$("div#controls").text(title);
	});
});
