$(document).ready(function(){
$("#google_translate_element").click(function(){ // Add onclick handler to translate button
$("#translator_image").hide("fase"); //hide it
$.getScript("/google_translate_activation/js/google_translate.js",
function() {
$.getScript("http://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit",
function() {})
});
$('#google_translate_element').unbind('click'); // remove onclick

});
});
