function translateTo( destLang ){
     $('body').translate( 'en', destLang, {
	not: '#translator', //exclude these elements
	toggle: true, // cache the translations
	async: true,
	fromOriginal: true // use original text
      });
}

$(document).ready(
	function() {
		var langcookie = $.cookie('currentlang');
		if (langcookie != 'en' && langcookie != null){
			translateTo( langcookie );
		}

		$('#langselect').change(function(){
			translateTo( $(this).val() );
			$.cookie('currentlang', $(this).val(), { expires: 0 });
		});				
	}
);
