
lo2.preload('nav/buy_local_o.png','nav/contact_us_o.png','nav/dashboard_o.png','nav/help_o.png','nav/home_o.png','nav/know_local_o.png','nav/login_o.png','nav/logout_o.png','nav/sell_local_o.png');

$('a.modal').each(function(){
	
				//Instantiate modal widgets for each form
				$($(this).attr('href')).dialog(
				{
					autoOpen: false,
					modal: true,
					title: $(this).attr('name')
				});

				//set the targeting links open modals
				$(this).click(function(){
					$($(this).attr('href')).dialog('open');
					return false;
				});
});


