// jQuery stuff
var $ = jQuery.noConflict();
jQuery(document).ready(function() {

	$("#sidebar h2:contains('Shop Online')").addClass("blue");
	$("#sidebar h2:contains('Store Info')").addClass("green");
	$("#sidebar h2:contains('News and Events')").addClass("gold");
	$("#sidebar h2:contains('Pay It Forward')").addClass("purple");


/* to top */
jQuery(function () {
    jQuery(window).scroll(function () {
        if (jQuery(this).scrollTop() >=150) {
            jQuery('#toTop').fadeIn();
        } else {
            jQuery('#toTop').fadeOut();
        }
    });
    jQuery('#toTop').click(function () {
        jQuery('body,html').animate({
            scrollTop: 0
        },
        800);
    });
});
/* to top */
    
  }
);

