//===========================================
//	anchor scroll - with J-Query & inerface
//===========================================
if (!ie5 && !ie4 && !nn4 && !opera){
	$(function(){
		$("a.smooth").click(function(){
			anchorPoint = this.getAttribute('href',2);
			$(anchorPoint).ScrollTo(400, 'easeout');
			return false;
		});
	});
}