$(document).ready(function() {

	$("#joinbutton").find('img').hide();
	$('#sidepanel a.btn').hide();	
	
	$('#sidepanel a.btn').bind('mouseenter',
		function() {
			$(this).stop().animate({'opacity': 1}, 400);
	}).bind('mouseleave',
		function(){
			$(this).stop().animate({'opacity': .9}, 400);			
	});

	setTimeout(function(){
				$("#joinbutton").find('img').show("clip",{ direction: "vertical" },500);
				$('#sidepanel a.btn').show('clip',{ direction: "vertical" },500);
				clearTimeout();
			}, 850);
	

});

