$(document).ready(function()
{
	$(".mainNav li:first").addClass("first");
	$(".ourFocusWrapper .grdBox:first").css("margin-left", "0");
	$(".ourFocusWrapper .grdBox .content::nth-child(1)").addClass("contentFirst");
	$(".ourFocusWrapper .grdBox .content::nth-child(2)").addClass("contentSecond");
	$(".ourFocusWrapper .grdBox .content::nth-child(2)").addClass("contentSecond");
	$(".leftNav li:nth-child(1)").addClass("first");
	$(".footerLink li:nth-child(1)").addClass("first");
	$(".tabularData tr:odd").addClass("odd");

    $.smoothAnchors(); // initialize smoothAnchors

    var current_top = 0;
	var home_top = $("#home").position().top;
	var what_we_do_top = $("#what_we_do").position().top - 10;
	var our_focus_top = $("#our_focus").position().top - 10;
	var stone_circle_foundation_top = $("#stone_circle_foundation").position().top - 10;
	var our_locations_top = $("#our_locations").position().top - 10;
	var our_team_top = $("#our_team").position().top - 10;
	var contact_us_top = $("#contact_us").position().top - 10;

      $(window).scroll(function () {
        current_top = $(document).scrollTop();
        $('li>a[href*="#"]').attr('class', 'menu_links_white');
        if (current_top < home_top)  {  // < 5700
          $('li>a[href="#home"]').attr('class', 'menu_links_selected');
		  //$('.footer').css('top','672px');
		}
        if (current_top >= what_we_do_top && current_top < our_focus_top) { // < 24800
          $('li>a[href="#what_we_do"]').attr('class', 'menu_links_selected');
		  //$('.footer').css('top','1848px');
		}
        if (current_top >= our_focus_top && current_top < stone_circle_foundation_top) { // < 24800
          $('li>a[href="#our_focus"]').attr('class', 'menu_links_selected');
		  //$('.footer').css('top','2770px');
		}
        if (current_top >= stone_circle_foundation_top && current_top < our_locations_top) {
          $('li>a[href="#stone_circle_foundation"]').attr('class', 'menu_links_selected');
		  //$('.footer').css('top','3692px');
		}
        if (current_top >= our_locations_top && current_top < our_team_top) {
          $('li>a[href="#our_locations"]').attr('class', 'menu_links_selected');
		  //$('.footer').css('top','4614px');
		}
        if (current_top >= our_team_top && current_top < contact_us_top) {
          $('li>a[href="#our_team"]').attr('class', 'menu_links_selected');
		  //$('.footer').css('top','5592px');
		}
        if (current_top >= contact_us_top) {
          $('li>a[href="#contact_us"]').attr('class', 'menu_links_selected');
		  //$('.footer').css('top','6420px');
		}
      });

});
