var currentPathname = window.location.pathname.toLowerCase();

$(function(){
	//Required for stupid IE
	$.ajaxSetup({cache: false});

	$("#menu ul > li").each(function(){
		$(this).css({
			width:$(this).outerWidth()+10,
			'text-align':'center',
			'margin-right':'5px'
		})
	});

	$('#footerlinks a, ul.leftmenu a').each(function() {
		var pathname = this.pathname.toLowerCase();
		if (pathname.charAt(0) != '/') {
			pathname = '/' + pathname;
		}

		if (pathname == currentPathname) {
			$(this).addClass('active');
		}
	});

	$('#menu a').each(function() {
		var pathname = this.pathname.toLowerCase();
		if (pathname.charAt(0) != '/') {
			pathname = '/' + pathname;
		}

		if (pathname == rootPageUrl) {
			$(this).addClass('active');
		}
	});

	if (showLikeButton) {
		$("#textcontent > h1").after('<iframe src="http://www.facebook.com/plugins/like.php?href='+currentUrl+'&amp;send=false&amp;layout=standard&amp;width=450&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=arial&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:35px;" allowTransparency="true"></iframe>');
	}

});
