$(document).ready(function(){
	$('div.left ul li').hover(function(){
		$('div.left ul li').removeClass('current');
		$(this).addClass('current');
		
		var id = $(this).attr('id');
		id = id.substr(5);
		//console.log(id);
		
		$('div.right ul').removeClass('current');
		$('div.right ul#state_' + id).addClass('current');
	}, function(){
		
	});
	
	$('a[hreflang]').click(function(e){
		e.preventDefault();
		window.location.href = '/r.php?lang=' + $(this).attr('hreflang') + '&href=' + encodeURIComponent($(this).attr('href'));
		//window.location.href = window.location.hostname.replace('www.', e.target.hreflang + '.');
	});
});
