jQuery(document).ready(function($) {
 
	$(".scroll").click(function(event){		
		event.preventDefault();
		fixOffset=0;
		
		if(this.hash=="#customers") {
			fixOffset=90;
		}
		else if(this.hash=="#rekry") {
			fixOffset=90;
		}
		else if(this.hash=="#contacts") {
			fixOffset=90;
		}
		else if(this.hash=="#top") {
			fixOffset=0;
		}
		$('html,body').animate({scrollTop:($(this.hash).offset().top -fixOffset)}, 500);
		_gaq.push(['_trackPageview', location.pathname + location.search + this.hash]);
	});
});

