var MenuName = "#MenuContainer";
var menuYloc = null;

$(document).ready( function() {

	$('body').layout({
		applyDefaultStyles: false,
		south__closable: true,
		south__resizable: false
	});

	if ($("#MenuContainer").length > 0)
		{
			menuYloc = parseInt($(MenuName).css("top").substring(0,$(MenuName).css("top").indexOf("px")))
			$("#CenterPane").scroll(function () {
				var offset = menuYloc+$("#CenterPane").scrollTop()+"px";
				$(MenuName).animate({top:offset},{duration:0,queue:false});
			});
		}


	$("button:submit, input:submit").button();

	$('.giveTip').cluetip({
		splitTitle: '|',
		dropShadow: false,
		cluetipClass: 'rounded',
		showTitle: true
	});

	$('.clearField').clearField();

	$("#dialog").dialog({
		bgiframe: true,
		autoOpen: false,
		height: 300,
		modal: true,
		buttons: {
			'OK': function() {
				$("form").submit();
				$(this).dialog("close");
			},
			'Cancel': function() {
				$(this).dialog("close");
			}
		}
	});
	$('#SubmitButton').click(function() {
		$('#dialog').dialog('open');
		return false;
	});


	$("a.NextDay").one("click", function() {
		$(this).click(function () {
			return false;
		});
	});

});
