$(document).ready(function(){
		$('li.top a').hover(
			function() { $(this).parents('li.top').find('a:first').addClass('hover');},
			function() {$(this).parents('li.top').find('a:first').removeClass('hover');});
	
	if (window.onbeforeprint !== undefined && $.browser.msie && $.browser.version != "9.0") {
		window.onbeforeprint = ShowLinks;
		window.onafterprint = HideLinks;
	}
		
});

function ShowLinks() {
	$("a").each(function() {
		if($(this).attr('href').substr(0,4) == "http") {    
			$(this).data("linkText", $(this).text());
			$(this).append(" (" + $(this).attr("href") + ")");
		}
	});
}

function HideLinks() {
	$("a").each(function() {
		$(this).text($(this).data("linkText"));
	});
}
