$(document).ready(function() {

	//////////////////////////////
	// code for include/why.php //
	//////////////////////////////

	/* show more info on why */
	$('#drop_menu').click(function() {
		$('#menu-list').animate({
			height: 'toggle'
		}, {
			duration: 1000, 
			specialEasing: {
				height: 'easeOutBack'
			}
		});
	});

	/////////////////////////////////////////
	// code for include/monthly-offers.php //
	/////////////////////////////////////////

	/* show more info on why */
	$('.monthly_offers_button').click(function() {
		/*$('.monthly_offers_button').hide();*/
		$('#monthly-offers').animate({
			height: 'toggle'
		}, {
			duration: 500, 
			specialEasing: {
				height: 'easeOutBack'
			}
		});
	});
	
	

}); // end document.ready
