
$(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');
	});

	$("div.lang").bind("mouseleave", function(){
		$(this).hide('fast');
	}).bind("click", function(){
		$(this).hide('fast');
	});
	if ($.browser.msie && parseInt($.browser.version) < 7){
		$.ajax({
			url: "js/jquery.pngFix.pack.js",
			type: "get",
			dataType:"script",
			success: function(e){
				$(document).pngFix();
				$("div.top a").css("position", "relative");
			}
		});
	}
});
