<!--// add :'s and required fields to forms of class myForms

function initForms() {
	
	$("div.fgForm").find("label").not('[class*=nocolon]').each(function(i) {
		if (!$(this).hasClass('radio')) { 
			$(this).append('&nbsp;:&nbsp;');
		} else {
			$(this).prepend('&nbsp;&nbsp;');
		}
	});

	// add the formatting to label styled spans
	$('div.fgForm').find('span.label').append('&nbsp;:&nbsp;');
	
	// get the forms of class myforms
	$('div.fgForm').find('input.required').after('<span class="required"></span>');
	$('div.fgForm').find('select.required').after('<span class="required"></span>');
}

// document on ready
$(document).ready(function() {
	initForms();
});
//-->
