$(function() {
	// Start row entry hover
	$("#start .row .entry a").hover(
		 function() { $(this).addClass("hover"); }
		,function() { $(this).removeClass("hover"); }
	);
	
	// Sub tab toggle
	$("#tab .holder").hide();
	$("#tab a.tab").click(function() {
		$(this).parent().children(".holder").slideToggle();
		return false;
	});


	// Inner fade in header

	$('#slide').innerfade({
		 speed: 	2000
		,timeout: 	6000
		,type: 		"sequence"
	});
	
	// Sub slide hover
	$("#tab a.slide").hover(
		 function() { $(this).addClass("hover"); }
		,function() { $(this).removeClass("hover"); }
	);
	
});
