function VIP()
{
	var wcfServiceProxy = new serviceProxy("/Services/VIP_WCF_Service.svc", "POST");
	var pm = new PageManager(wcfServiceProxy, false);
	var mm = new ModalManager(pm, wcfServiceProxy, false);
	pm.SetModalManager(mm);
	this.initVIP = function ()
	{
		addDefaultHandlers();
//		$("body").onImagesLoad(
//		{
//			selectorCallback: function ()
//			{
				pm.initPageManager();
//			}
//		});

	};

	function addDefaultHandlers()
	{
		$('#menu').find("a").hover(function ()
		{
			var $this = $(this);
			$this.stop(true, true).animate({
				'bottom': '-15px'
			}, 300);
			$('i', $this).stop(true, true).animate({
				'top': '15px'
			}, 400);
		},
				function ()
				{
					var $this = $(this);
					$this.stop(true, true).animate({
						'bottom': '-87px'
					}, 300);
					$('i', $this).stop(true, true).animate({
						'top': '50px'
					}, 400);
				});
		$(".special").click(function ()
		{
			mm.showSpecials();
			pm.GoToPage("locations");
			return false;
		});
		$("#employment").click(function () { mm.showApplication(); return false; });
		$("#contact").click(function () { mm.showContactInfo(""); return false; });
	}
}
