$(document).ready(function () {

	$('#wrapper').contents().filter(function () {
		return this.nodeType == 3;
	}).remove();

	$('#left-menu li').click(function () {
		var href = $(this).find('a').attr('href');
		window.location = href;
	});

});

