(function($) {
	$(document).ready(function() {
		/* PRINT LINKS
		---------------- */
		$("a#print").click(function() {
			window.print();
			return false;
		});

		/* MENU 
	 	---------------- */
		function showSecondLevel(){
			/**$(this).children(".secondDropdown").animate({"height":"auto"},200); crashing ie **/
			$(this).children(".secondDropdown").slideDown(); 
			$(this).addClass("hover");
		}
		function hideSecondLevel(){ 
			$(this).children(".secondDropdown").slideUp();
			$(this).removeClass("hover");
		}

		var config = {    
	     	sensitivity: 5,
	     	interval: 100,
	     	over: showSecondLevel, 
	     	timeout: 400,
	     	out: hideSecondLevel
		};

		$("#Navigation li.level1").hoverIntent(config);
	})
})(jQuery);