

function select(menuItemId) 
{
    if (!document.getElementById) return false;
    menuItem = document.getElementById(menuItemId);
    menuItem.className = 'Selected';
}

function wireupCreditBehavior()
{
	if (!document.getElementById) return false;
	mainBottomDiv= document.getElementById('MainBottom');
	mainBottomDiv.onmouseover = function() { document.getElementById('Credit').className='Hover'; };
	mainBottomDiv.onmouseout = function() { document.getElementById('Credit').className=''; };
	mainBottomDiv.onclick = function() { window.open('http://www.caudillweb.com'); };
	// preload image
	preloadedImage = newImage('../images/cwt.on.gif')
}

function newImage(arg) {
  if (document.images) {
    rslt = new Image();
    rslt.src = arg;
    return rslt;
  }
}

$(function() {
	wireupCreditBehavior();
	var $submitButton = $("#SubmitButton");
	//	$submitButton.click(function() {
			//$("form").bind("submit", function() {
	//		$submitButton.hide
	//	});
});
