// initialize accordion

jQuery(document).ready(function($)
{
	$('a').not('a.noAlert').filter(function()
	{
	   return this.hostname && this.hostname !== location.hostname;
	}).click(function ()
	{ 
		var x=window.confirm('You are leaving the Parkside Financial Bank & Trust Website. Click OK to proceed.');
		var val = false;
		if (x)
		{
			val = true;
		}
		else
		{
			val = false;
		}
		
		return val;
	});
});
