$(document).ready(function(){

$("#drop_down").hide();

$("#quote").click(function() {
	$("#drop_down").toggle();
});

});