$(function() {

	/*
$('#choose-language a').click(function(e){
		e.preventDefault(); //Cancel the link behavior
		//alert('-_-');
	});
	
	$('#sidebar .communities a').click(function(e){
		e.preventDefault(); //Cancel the link behavior
		
		$('#sidebar .communities a').each(function(){ $(this).removeClass('current'); });
		$('#sidebar .communities ul').each(function(){ $(this).removeClass('current'); });
		
		$(this).addClass('current');
		$('#' + $(this).attr('href').substr(1) + '-panel').addClass('current');
		//alert(this);
	});
*/
});
