$(document).ready(function() {

	$('.translate a').click(function() {
		if($('#google_translate_element').is(':visible')){
			$('#google_translate_element').fadeOut("fast");
			  $(this).parent().animate({
				    height: "24"
				    
				  }, 500);
		}else{
			  $(this).parent().animate({
				    height: "75"
				    
				  }, 500, function() {
					  $('#google_translate_element').fadeIn("normal");
				  });		
		}
		return false;
	
	});
});
