$(document).ready(function(){
    $("#nav-item > h2").hover(function () {
		if (String($(this).css("background-image")).match("nav-arrow.png") == null) {
	    	$(this).css('background','url(images/nav/nav-item-over.png) no-repeat top left');
		}
   	}, function () {
		if (String($(this).css("background-image")).match("nav-arrow.png") == null) {
			$(this).css('background', 'url(images/nav/nav-item.png) no-repeat top left');
		}
   	});
    $("#nav-item > h2").click(function () {
	    $("#nav-item > h2").css('background','url(images/nav/nav-item.png) no-repeat top left');
	    $(this).css('background','url(images/nav/nav-arrow.png) no-repeat top left');
   	});
   	$("#core-content").html($("#marc-content").html());
   	$("#core-content > bkg").css('background','url(../images/people/marc-content-bkg.png) no-repeat left top');	  
});
