// JavaScript Document
$(function(){
	$('#topNav>li').hover(function(){
		$(this).addClass('activeNav');						  
		},function(){
		$(this).removeClass('activeNav');						  
	});
	$('#printLink').click(function(){
		window.print();
		return false;
	});
});