/**
 * @file nav.js
 *
 */

$(function() {
	$('.nav').children().filter('li').each(function() {
		this.onmouseover = function() { $(this).addClass('over'); }
		this.onmouseout = function() { $(this).removeClass('over'); }
	    });
    });
