jQuery().ready(function(){

jQuery('#nav , #nav2').accordion({
                     
    	active: false, 
    	header: '.headitem', 
    	navigation: true, 
    	event: 'click', 
    	fillSpace: false, 
    	animated: 'easeslide',

	});

$('a.headitem').click(function(){

var hrefhash=this.href;
var timeout=null;

         clearTimeout(timeout);
         timeout=setTimeout(function(){
	  	window.location.href=hrefhash;
		return false;
	  }, 550);

}); 






















});








