function init() {
	
	// background image for main menu rollovers
	$('#menu li').hover(
		function () { $(this).css("background-image","url(img/menuRollover.gif)");	}, 
		function () { $(this).css("background-image",""); }
		);
	// disable background image rollovers for submenus and selected menu
	$('#menu li ul li, #menu li.selected').hover(
		function () { $(this).css("background-image","");	}, 
		function () { $(this).css("background-image","");	}
		);
	// large banner fade in/out
	$('#bannerFade').show().innerfade({ 
		speed: 2500, 
		timeout: 8500, 
		type: 'sequence'
	});
	// client showcase fade in/out
	$('#showcaseFade').show().innerfade({ 
		speed: 600, 
		timeout: 5000, 
		type: 'sequence'
	});
	
}


