$(document).ready(function() {
	$('a[href*=#]').each(function() {
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
		&& location.hostname == this.hostname
		&& this.hash.replace(/#/,'') ) {
		var $targetId = $(this.hash), $targetAnchor = $('[name=' + this.hash.slice(1) +']');
		var $target = $targetId.length ? $targetId : $targetAnchor.length ? $targetAnchor : false;
		if ($target) {
			var targetOffset = $target.offset().top;
			$(this).click(function() {
				$('html, body').animate({scrollTop: targetOffset}, 1500);
				return false;
			});
		}
	}
	});
	
	$(window).scroll(function () {
			var offset = $(window).scrollTop();
			//alert(offset);
			if(offset >= 0 && offset <= 860) {
				$('#about').removeClass('thisone');
				$('#services').removeClass('thisone');
				$('#awards').removeClass('thisone');
				$('#work').removeClass('thisone');
				$('#news').removeClass('thisone');
				$('#color').removeClass('thisone');
				$('#contact').removeClass('thisone');
				$('#home').addClass('thisone');
			}
			if(offset >=861 && offset <= 1800) {
				$('#home').removeClass('thisone');
				$('#services').removeClass('thisone');
				$('#awards').removeClass('thisone');
				$('#work').removeClass('thisone');
				$('#news').removeClass('thisone');
				$('#color').removeClass('thisone');
				$('#contact').removeClass('thisone');
				$('#about').addClass('thisone');
			}
			if(offset >= 1801 && offset <= 2700) {
				$('#home').removeClass('thisone');
				$('#about').removeClass('thisone');
				$('#awards').removeClass('thisone');
				$('#work').removeClass('thisone');
				$('#news').removeClass('thisone');
				$('#color').removeClass('thisone');
				$('#contact').removeClass('thisone');
				$('#services').addClass('thisone');
			}
			if(offset >= 2701 && offset <= 3600) {
				$('#home').removeClass('thisone');
				$('#about').removeClass('thisone');
				$('#services').removeClass('thisone');
				$('#work').removeClass('thisone');
				$('#news').removeClass('thisone');
				$('#color').removeClass('thisone');
				$('#contact').removeClass('thisone');
				$('#awards').addClass('thisone');
			}
			if(offset >= 3601 && offset <= 4500) {
				$('#home').removeClass('thisone');
				$('#about').removeClass('thisone');
				$('#services').removeClass('thisone');
				$('#awards').removeClass('thisone');
				$('#news').removeClass('thisone');
				$('#color').removeClass('thisone');
				$('#contact').removeClass('thisone');
				$('#work').addClass('thisone');
			}
			if(offset >= 4501 && offset <= 5400) {
				$('#home').removeClass('thisone');
				$('#about').removeClass('thisone');
				$('#services').removeClass('thisone');
				$('#awards').removeClass('thisone');
				$('#work').removeClass('thisone');
				$('#color').removeClass('thisone');
				$('#contact').removeClass('thisone');
				$('#news').addClass('thisone');
			}
			if(offset >= 5401 && offset <= 6300) {
				$('#home').removeClass('thisone');
				$('#about').removeClass('thisone');
				$('#services').removeClass('thisone');
				$('#awards').removeClass('thisone');
				$('#work').removeClass('thisone');
				$('#news').removeClass('thisone');
				$('#contact').removeClass('thisone');
				$('#color').addClass('thisone');
			}
			if(offset >= 6301) {
				$('#home').removeClass('thisone');
				$('#about').removeClass('thisone');
				$('#services').removeClass('thisone');
				$('#awards').removeClass('thisone');
				$('#work').removeClass('thisone');
				$('#news').removeClass('thisone');
				$('#color').removeClass('thisone');
				$('#contact').addClass('thisone');
			}
		});
});
