$(document).ready(function() {
	// hides stuff with the class of 'Hide' as soon as the DOM is ready
	$('.hide').hide();
});


function showSlidingDiv(){
$("#expand-content").animate({"height": "toggle"}, { duration: 750 });
}

	


