jQuery.noConflict();

jQuery(document).ready(function(){

	jQuery("body.flyer #flyer").animate({
		top: '100'
	}, 3000, "easeOutQuad");

	jQuery("#flyer_close").click(function(){
		jQuery("#flyer").animate({
			top: '-1000'
		}, 1000, "easeInQuad");
	});

	jQuery("#flyer_button").click(function(){
		jQuery("#flyer").animate({
			top: '100'
		}, 2000, "easeOutQuad");
	});

});

