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

