window.addEvent('domready', function() {
	ajaxRequest();
});

function ajaxRequest() {
	new Ajax('../template/city-summary-page.php',{
				update: $('price-grid'),
				onComplete: function() {
					addTableStripes();
					disableBannerLinks();
					var myLightBox = new Lightbox('lightbox','banner_order_link','electricity','Enter Your Address to Get Exact Pricing');
				}
			}).request();
}

