$(document).ready(function(){
     
	$("#fanbar").css({
		opacity: 0,
		display: "none"
	});
	
	/*
	$('#trigger').mouseover(function() {
		$("#slider").animate({ 
			marginBottom: "20px",
			color: "#f48940"
		}, 300, function() {
			$("#fanbar").css({
				display: "block"
			});
			$("#fanbar").animate({
				opacity: 1
			}, 300 );
		}  );
		
		
	});
	
	/*
	$('#trigger').mouseout(function() { 
		$("#fanbar").animate({ 
			opacity: 0
		}, 300, function(){
			$("#slider").animate({
				marginBottom: "0px",
				color: "white"
			}, 300 );
		}  );
		
		
	});
	*/
});

