$(document).ready(function() {
	$('a').not('.openimage').each(function(){
		var href = $(this).attr('href');
		var reg = new RegExp('^#[a-zA-Z0-9]+$','g');
		if(reg.test(href))
		{
			$(this).click(function(){
				$(document).scrollTo( $(href), 1500,{easing: 'easeOutQuad'} );
				return false;
			});
		}
		else
		{
			//alert(href)
		}
	});
});