(function ($) {
$(document).ready(function (){
	$('#LeftMenu .link').mouseenter(function () {
		hoverLeftMenu(this);
	}).mouseleave(function () {
		houtLeftMenu(this);
	});
	$('#Languages .siteLanguage').click( function () {
		if (!$(this).hasClass('current')) {
			$.get('/set-language.json', { id : $(this).attr('id').replace(/\D/g, '')}, function (d) {
				document.location += '';
			});
		}
	});
	fixLeftMenu();

});
})(jQuery);

function hoverLeftMenu( oElement ) {
	$('#LeftMenu .hovered').removeClass('hovered');
	$(oElement).addClass('hovered');
}
function houtLeftMenu( oElement ) {
	$(oElement).removeClass('hovered');
}
function fixLeftMenu() {
	var jContent = $('#Content');
	jContent.find('.shadowBlock:last').css('margin-bottom', 0);
}
