/* Calendar */
$(function() {
	/* start: open calendar */
	$('#oasis_toggle').toggle(function(){
		$('#calendar').stop().animate({'bottom':'0px'},200,function(){

		});
	},function(){
		$('#calendar').stop().animate({'bottom':'-481px'},200,function(){
		});
	});
});

/* Movie Trailers */
$(function() {
	/* start: open menu */
	$('#menu_toggle').toggle(function(){
		$('#trailers').stop().animate({'bottom':'0px'},200,function(){

		});
	},function(){
		$('#trailers').stop().animate({'bottom':'-331px'},200,function(){
		});
	});
});

/* Weather */
$(function() {
	/* start: open Map */
	$('#google_toggle').toggle(function(){
		$('#map').stop().animate({'bottom':'0px'},200,function(){

		});
	},function(){
		$('#map').stop().animate({'bottom':'-603px'},200,function(){
		});
	});
});

