// Smooth Mouse Wheel

jQuery(function($){  $('#top-header, #news, #portfolio, #about, #contact, #header, #footer').localScroll(); }); <!-- Divs for the smooth scroll works -->


$(document).ready(function(){
		var myQuote = $('#my_quote');
		myQuote.hide();
		$('.button').click(function(){
		myQuote.show(500);
		});
		});