﻿$(function(){
	setTimeout("fadeOutLogo()", 4000);
}); 

function fadeOutLogo(){
	$("#staticTopFeature").fadeOut(2000, function(){                                                    
		$("div.scrollableTopFeatures").fadeIn(400, function(){
			if($(this).children(".items").children().length > 1)
			{
				// initialize scrollable
				$(this).scrollable({size: 1, interval: 7500, loop: true, speed: 700, 
					onBeforeSeek: function(){
						this.getItems().fadeTo(300, 0.2);
					},
					onSeek: function(){
						this.getItems().fadeTo(300, 1);
					}
				});
			}
		});
	});
}