
$(document).ready(function() {
	//:: Empty form fields :://
	/*
	if($('#contour').length > 0) {
		$('#contour input,#contour textarea').not('.contourButton').each(function() {
			var $this = $(this);
			$this.val("");
			$this.html("");
			if($this.next('a').length > 0) $this.next('a').remove();
			$this.replaceWith($this.clone(true));
		});
		$('#contour').css('visibility','visible');
	}
	*/
});
