$(document).ready(function()
{
	$("#heading ul li").not('.section-title').hide();
	//$(this).find("li.active").prevAll().nextAll().show();
	
	$("#heading ul li.active").parent().css('font-weight','bold');
	$("#heading ul li.active").parent().css('color','#000000');

	$("#heading>ul").hover(
     	function () {   $('body').css('cursor', 'pointer'); 
	  		$(this).find('li:hidden').slideDown(500); 
			$(this).css('color','#000000');  
	  		$("#heading ul li.active a").css('color','#000000');
			$("#heading ul li.active a").css('font-weight','bold'); 	$("#heading ul li.active").parent().css('color','#000000');
		}, function () {   $('body').css('cursor', 'default'); 
			$(this).find('li:visible').not('.section-title').fadeOut(500);   $(this).css('color','#666666');  $("#heading ul li.active").parent().css('color','#000000');
		}
    );

	$('ul#innerfade').innerfade(
				{
						speed: 1000,
						timeout: 5000,
						type: 'sequence',
						containerheight: '350px'
				});



});
