$(document).ready(function() {
	resizeFooter();
	DD_roundies.addRule('#head', '10px 10px 0 0', true);
	DD_roundies.addRule('#footerContainer', '10px 10px 0 0', true);
	DD_roundies.addRule('#bottom', '0 0 10px 10px', true);
	
	var path = $.url.attr("path");
	
	$('#nav a').each(function(i) {
		if ($(this).attr("href") == path) {
			$(this).addClass("current");
		};
	});
	
	$(window).bind('resize', function() {
		resizeFooter();
	});
	
	function resizeFooter() {
		var winHeight = $(window).height();
		var containerHeight = $('#container').height();
		var newHeight = (winHeight - containerHeight - 53);
		if (newHeight > $('#footer').height()) {
			$('#footerContainer').height(newHeight);	
		}
	}
})