// JavaScript Document
$(document).ready(function() {
						   

		//menu hover states
			$(function() {
				$('#nav li a').hover(function(){
					$(this).animate({marginTop:'-10px', height:'30px'},{queue:false,duration:300});
				}, function(){
					$(this).animate({marginTop:'0px', height:'20px'},{queue:false,duration:300});
				});
			});
				

		
		$( "#accordion" ).accordion({
			autoHeight: false,
			event: "mouseover",
			animated: "easeInOutCubic"
		});
	
});


