$(document).ready(function(){
 $("ul.langList li").bind("mouseover", function(){
 $(this).css({"backgroundColor": "#36c", "color":"#fff"});
 }).bind("mouseout", function(){
 $(this).css({"backgroundColor": "transparent", "color":"#000"});
 }).bind("click", function(){
 g = "http://translate.google.com/translate?u=";
 g+= escape(window.location.href)+"&sl=en&tl="+this.className+"&hl=en&ie=UTF-8";
 window.open(g, "_blank");
 });

 $("a.trans").bind("mouseover", function(){
 $aLeft = $(this).offset().left;
 if ($(window).width() - $aLeft - $("div.lang").width() < 0){
 $("div.lang").css("right", "10px");
 }else{
 $("div.lang").css("left", $(this).offset().left+"px");
 }
 $("div.lang").show('fast');
 }).bind("mouseout", function(e){
 console.log(e);
 });

 $("div.lang").bind("mouseleave", function(){
 $(this).hide('fast');
 }).bind("click", function(){
 $(this).hide('fast');
 });
});
