$(document).ready(function() {
	
	// Immediately hide the lightbulb logo
	$("#logo").addClass("hide");
	
	// Set up a delay timer to trigger once DOM is loaded
	$(this).delay(3500, function() {
	
		// Start the flicker animation
		$("#logo").fadeTo(100, 0.1).fadeTo(80, 0).fadeTo(80, 0.4).fadeTo(80, 0.1).fadeTo(80, 0.6).fadeTo(80, 0.2).fadeTo(90, 1);
		
	});
	
	// Load Superfish menu
    $("ul.sf-menu").superfish({
    	autoArrows: false
    });
    
    // Start Newsticker
	$('.newsticker').innerfade({
		animationtype: 'fade',
		speed: 700,
		timeout: 12000,
		type: 'sequence',
		containerheight: '13em'
	});

});