

$(document).ready(function(){
	$('ul.main-nav').find('li').mouseenter(function() {
		$(this).addClass('hover');
	}).mouseleave(function() {
		$(this).removeClass('hover');
	});
});

$(document).ready(function () {

});

