$(document).ready(function () {
	splan();
});

function splan() {
	$('p.header').toggle(function () {		
							   $(this).parent().css('height','auto');
							   $('.arrows',this).attr('src','../images/content/Strategic-Plan/uparrows.jpg');
							   $('.details',this).attr("innerHTML",'(Hide Details...)');
							   }, function () {
							   $(this).parent().css('height',"23px");
							   $('.arrows',this).attr('src','../images/content/Strategic-Plan/downarrows.jpg');
							   $('.details',this).attr("innerHTML",'(Show Details...)');

								   });
	};
	
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=700,height=540,left = 290,top = 242');");
}
