// MENU DROPS 
$(function() {
	$('ul.level-2').hide();
	
    $('li.drop-parent').hover(function(){
		$('ul.level-2').stop("clearQueue","gotoEnd").slideDown(400);
	},
	
	function () {
		// on mouse out
		$('ul.level-2').stop("clearQueue","gotoEnd").slideUp(200);
	});
	
});

$(function() {

	//When page loads...
	$(".news-story").hide(); //Hide all content first
	$(".news-story:first").show(); //Show first tab content	

	//On Click Event
	$(".read-news").click(function() {
		$(".news-story").hide(); //Hide all tab content

		var activeTab = $(this).attr("href"); //Find the href attribute value to identify the active tab + content
		$(activeTab).fadeIn(); //Fade in the active ID content
		return false;
	});

});
