    // Esnure the $ works with jQuery
    var $ = jQuery.noConflict();

    $(document).ready(function() {
	    $.localScroll();
    });
	

	$(".scroll").click(function(event){
	//prevent the default action for the click event. Other links that don't have "scroll" class will not scroll.
		event.preventDefault();
	});

	$('.home-menu').localScroll({
   target:'#wrapper'
	});

