$(document).ready(function(){

	/* remove empty partners */
	$("#banner div:empty").hide();

	/* init scroller */
	easyscroll();
	
	/* init navigation */
	$("#nav li").hover( function() {
		$(this).addClass('active');
	},
	function () {
		$(this).removeClass('active');
	});
	
	/* init banner slider */
	$("#banner .scrollable").scrollable({
		interval: 1000,
		easing: "linear", 
		loop: true,
		speed: 3000
	});
	
	/* show content */
	$("#scrollBox").fadeIn('slow');
	$("#banner").css("visibility","visible");
});