$(document).ready(function(){
	$('#head-menu > li > a').click(function(){
		$('#head-menu > li > a').each(function(){
			$(this).removeClass('over');
			$(this).next().removeClass('over');
		});
		$(this).addClass('over');
		$(this).next().addClass('over');
	});
});