$(document).ready(function(){
	var current_id = $(".mainMenu > .active").attr('id');
	$(".mainMenu > li").click(function(){
		if (current_id != $(this).attr('id'))
		{
			$(this).html('<div class="tl"></div><strong>' + $(this).text() + '</strong>');
			$(this).addClass('active');
			$("#" + current_id).html('<a href="#">' + $("#" + current_id).text() + '</a>');
			$("#" + current_id).removeClass('active');
			$('.topLeftMenuWrapper').html(menuLinks[$(this).attr('id')]);
			current_id = $(this).attr('id');
		}
	}
	);
	$(".subMenuSelector > li").click(function(){
		$("#lastLevelMenu").html(subMenu[$(this).attr('id')]);
	}
	);
});