jQuery(document).ready(function(){
	
	/** Navigation **/
	jQuery("#navigation").superfish({
		hoverClass	: "sfHover",
		pathClass	: "overideThisToUse",
		delay		: 800,
		animation	: {height:"show"},
		speed		: "normal",
		onInit		: function(){},
		onBeforeShow: function(){},
		onShow		: function(){},
		onHide		: function(){}
	});
	
	//remove border from last LI in subnav
	jQuery("#navigation ul li:last-child").css("border","none");
	
	/* 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();
	
	/* Activate all media */
	jQuery(".media").media();
	
	/* remove box from links */
	jQuery("a").focus(function(){
		this.blur();
	});
	
});
