$(document).ready(function(){
						   
						   $(function() {
		$("#accordion").accordion({
			autoHeight: false
		});
	});
						   
						   $(".avia #header #menu ul li").hover(
      function () {
		  
		  $(this).css({'background':'url(img/menubg2.jpg) no-repeat right bottom'});
			 $(this).find("img").css({'width':'60px','height':'44px'});
		},
	    function () {
			 $(this).css({'background':'url(img/menubg1.jpg) no-repeat right top'});
		 $(this).find("img").css({'width':'45px','height':'33px'});	
		});
						    });