// JavaScript Document
$(document).ready(function(){
						   
$("#menu-main li a").hover(function(){
				$(this).addClass("hover");	
					}, function(){
				$(this).removeClass("hover");		
					});						   
						   		

						   });

