var LC_REGISTER_COOKIE = "lc_register";
var cookie_config = { path: '/', expires: 360 };

$(function()
{
	$("#translate select").change(function()
	{
		($("option:selected", $(this)).val() == "") ? null : window.location = "http://www.google.com/translate_c?hl=en" + $("option:selected", $(this)).val() + "&u=" + window.location.href;
	});
});