
jQuery(document).ready(function(){
	/*----- Navigation ------*/
	jQuery("#navigation").accordion({
		active: false,
		header: '.menuTitle',
		event: 'click',
		autoheight:false,
		navigation:true,
		showSpeed: 800,
		hideSpeed: 1000
	});
	
/* REMOVE LINE FROM THE EMPTY <UL> ELEMENTS (NOTE: be sure there is NO space between the <ul></ul> elements) */
jQuery("#navigation li ul:empty").remove();
	
	
/* remove box from links */
	jQuery("a").focus(function(){
		this.blur();
	});
	
});
