jQuery (function($) {
	$(document).ready(function() {
		$('input[type=text], input[type=password]').removeAttr('size');
		$('#nav li a, #content-left li a, #footer p a').each(function() {
			if ($(this).attr('href') == window.location.href) {
				$(this).addClass('active');
			};
		})
	});
});
