// JavaScript Document

$(document).ready(function () {
	
	/*$('.tooltip').each(function() {
		tipContent = $(this).html();
		$(this).html("<img src='/inc/images/icons/help.png' alt='help' width='16' height='16' align='top'>");
		$(this).children('img').qtip({
			content: tipContent,
			style: { name: 'cream', tip: 'leftMiddle', width: 340 },
			position: {
			  corner: {
				 target: 'rightMiddle',
				 tooltip: 'leftMiddle'
			  }
		   }

	
		});
	}); // END each tooltip*/
	
		
	$(".formrequired").after('&nbsp;<img src="/inc/images/smallarrow.png" width="14" height="12" align="absmiddle" alt="required" title="This field is required" />');
	
	$.ajaxSetup({cache: false});
	
	$("button, input:submit, input[type='button'], a.button").button();
	$(".datepicker").datepicker();
	
	$(".tabs").tabs().show();
	
	
	
});

function confirmMsg(msg,url) {
	if (confirm(msg)) {
		window.location = url;
	} else {
		return false;
	}
} // EOF confirmMsg
