$(function () {
$("#makeOrder").click(function(){orderPage();return false;});
$("#makeOrder2 a").click(function(){orderPage();return false;});
$(".ui-widget-overlay").live("click", function(){$(".ui-dialog-titlebar-close").click();});

function orderPage()
	{
		var options={
			'title':'Оформление заказа',
			'width':900,
			'modal':true,
			'position':'top'
		};
		$("#orderPage").dialog(options);
		$("#orderPage").html('<div class="preload"><img src="/theme/stones/i/ajax-loader.gif" alt="" /></div>');
		$.get(
			'/application/ajax.php',
			{
				'f':'loadCache',
				'page':'orderPage.html',
			},
			function(data)
			{
				$("#orderPage").html(data);
			});
		return false;
	}


});
