
$(document).ready(function() {
	$('li').mouseover(function() { $(this).addClass('hover'); });
	$('li').mouseout(function() { $(this).removeClass('hover'); });
	$('li').click(function() { $(this).addClass('active'); });
});

