
	$(function() {
		
		$("#content").animate( {
			"marginTop": "50px"
		}, 4000 );
		
		$("#logo").fadeIn(1000);
		$("#buttongap").animate( {
			"marginRight": "0px"
		}, 2000 );
		
		setTimeout( "showWhat()", 500 );
		setTimeout( "showBBB()", 1000 );
		setTimeout( "showRetro()", 1500 );
		setTimeout( "showRSS()", 2000 );
		setTimeout( "showFacebook()", 2500 );
		setTimeout( "showTwitter()", 3000 );
		
		if ($.browser.msie) {
			$("#showie").show( 500 );
			$("#rss").hide();
		}
		
		$("#whatclick").colorbox({inline: true, width: "400px", height: "200px", href: "#whattext"});
		$("#rssclick").colorbox({width: "80%", height: "80%"});
		
	} );
	
	function showBBB() {
		$("#bbb").animate( {
			"opacity": 0.8
		}, 1000 );
	}

	function showRetro() {
		$("#retro").animate( {
			"opacity": 0.8
		}, 1000 );
	}

	function showWhat() {
		$("#what").animate( {
			"opacity": 0.8
		}, 1000 );
	}

	function showRSS() {
		$("#rss").animate( {
			"opacity": 0.8
		}, 1000 );
	}

	function showFacebook() {
		$("#bottom").animate( {
			"marginRight": "10px"
		}, 1500 );
		$("#facebook").animate( {
			"opacity": 0.8
		}, 1000 );
	}
	function showTwitter() {
		$("#twitter").animate( {
			"opacity": 0.8
		}, 1000 );
	}

	function hoverOn( what ) {
		$(what).css( "opacity", 1.0 );
	}
	
	function hoverOff( what ) {
		$(what).css( "opacity", 0.8 );
	}