$(document).ready(function() {
	$("#twitter, #album, #video, h2.drop, h2.giddy, #follow").fadeIn(1000);
	
	$('a.btn_enterAchin').hover(
		function() {
			$(this).stop().animate({color: '#ffffff'});
		},
		function() {
			$(this).stop().animate({color: '#f57777'});	
		}
	);
	
	$('a.btn_enterShakin').hover(
		function() {
			$(this).stop().animate({color: '#ffffff'});
		},
		function() {
			$(this).stop().animate({color: '#ff7fee'});	
		}
	);
	
	$(window).resize(function() {
		var minWidth = parseInt($('#container').css('width'));
		if (window.innerWidth < minWidth) {
			var posRight = (minWidth - window.innerWidth) / 2;
			$('#containerWrapper').css({right: posRight + 'px'});
		}
		else {
			$('#containerWrapper').css({right: 0});	
		}
	});
	
	
});
