﻿/* animate menu */
function knavIn() {	$('#knav .kmsub').hide(50);	$(this).find('.kmsub').slideDown(150); }
function knavOut() { $(this).find("ul.kmsub").slideUp(150); }
$(function () {
	/* remove css hover rule */
	$('#knav').removeClass('use-hover');
	/* re-implement it */
	$("#knav li.kmtop").hoverIntent({ interval: 50, over: knavIn, timeout: 400, out: knavOut });
	/* set click wrapper for pdf class */
	$(".pdf").click(clickwrap);
});
/* click event wrapper */
function clickwrap() { _gaq.push(['_trackPageview', $(this).attr('href')]); }

