$(document).ready( function() {	
	// add iehover class to support hover for li
	if ( jQuery.browser.msie ) {
		$('div#nav_main>ul>li').hover(
			function() {
				$(this).addClass( 'hover' );
			},
			function() {
				$(this).removeClass( 'hover' );
			}
		);
	}
	
	// set up print button
	if( $('a#printButton') ) {
		$('a#printButton').click( function() {
			window.print();
		});
	}
});

