jQuery(document).ready(function() {
	jQuery('a.new-window').click(function() {
		window.open(this.href);
		return false;
	});

	jQuery('#page-nav').ptMenu();
});

function populateForm() {
	jQuery('input:text, input:checkbox, input:radio, textarea').each(function(i) {
		if (this.name != undefined && this.name != '') {
			paramValue = jQuery.getURLParam(this.name);
			if (paramValue != null) this.value = jQuery.URLDecode(paramValue);
		}
	})

/*
	jQuery('textarea').each(function(i) {
		if (input.name != undefined && input.name != '') {
			paramValue = getParameter(input.name);
			if (paramValue != null && paramValue != undefined && paramValue != '') input.value = paramValue;
		}
	})
*/
}

