// JavaScript Document

$.fn.alignFormTable = function() {
	var tdlabels = jQuery.makeArray($(this).children("tr td:even"));
	$.each(tdlabels,function() {
		$(this).css({ "textAlign":"right","verticalAlign":"top" });
	});	
}

$.fn.makeRequired = function() {
	//$(this).children("td:first").append(" *");
	//$(this).parent().parent().submit(function() {
	//	alert('test');												
	//});
}