(function($){
	$.fn.scTranslator = function(options){
		var defaults = {
			useAttr : 'name' // attribute with language letters
		};
		
		var settings = $.extend({},defaults,options);
		
		$(this).find("a").each(function(){$(this).click(function(e){
				window.location = "http://translate.google.com/translate?hl="+$(this).attr(settings.useAttr)+"&u="+window.location.href;
				e.preventDefault(); 
			});
		});
	}	  
})(jQuery);
