/* - navHighlight.js -
*
*	hides the direct edit button
*
*/

$(document).ready(function() {

	// hide default button
	$('body > a').css({display: 'none'});

	// link new button
	$('#directEdit').attr('href', $('body > a').attr('href'));

});



