// Very smooth page scolling to the given anchor
// jQuery is required
// author: Laurynas

function WeblancetScrollTo(id, duration)
{
	if(duration == null)
		duration = 500;
	
	if($(id).offset() != null)
		$('html,body').animate({
			scrollTop: $(id).offset().top - 26
			},
		duration, 'linear');
}
