$(document).ready(function() {
	$('a.ancLinks').click(function () {
		elementClick = $(this).attr("href");
		destination = $(elementClick).offset().top;
		$('html' +( ! $.browser.opera ? ' ,body' : '')).animate({ scrollTop: destination }, 250 );
		return false;
	});
});
