$(document).ready(function() {
			        $.get('findquote.php', function(quote){$('#quote').html(quote)});
                                $('a[href="#"]').click(showContactWindow);
                                $('#closebutton').click(closeContactWindow);
                                $('#overlay').click(closeContactWindow);
				  });

function showContactWindow() {
  $('#overlay').fadeIn('slow');
  $('#contact').fadeIn('slow');
  return false;
}

function closeContactWindow() {
  $('#overlay').fadeOut('slow');
  $('#contact').fadeOut('slow');
}