$(document).ready(
	function(){
  	$('#program-find').hover(
			function() {
				$(this).attr('src','/img/program-find-on.gif');
     	},
			function() {
				$(this).attr('src','/img/program-find.gif');
			}
			);
  	$('.leftnav').hover(
			function() {
				$(this).attr('class','leftnav-active');
     	},
			function() {
				$(this).attr('class','leftnav');
			}
			);
  	$('.leftnav3').hover(
			function() {
				$(this).attr('class','leftnav3-active');
     	},
			function() {
				$(this).attr('class','leftnav3');
			}
			);			
  	$('#event-upcoming').hover(
			function() {
				$(this).attr('src','/img/event-upcoming-on.gif');
     	},
			function() {
				$(this).attr('src','/img/event-upcoming.gif');
			}
			);
  	$('#request-info').hover(
			function() {
				$(this).attr('src','/img/request-info-on.jpg');
     	},
			function() {
				$(this).attr('src','/img/request-info.jpg');
			}
			);
//		$('#confirm').Highlight(1500, 'green');
	});

function confirmDelete(gotopath) {
    var c = confirm('Are you sure you want to DELETE this?');
    if (!c) return false;
    document.location= gotopath;
}

