Event.observe(window, 'load', function() {
$$('a[href^=#]:not([href=#])').each(function(element) {
element.observe('click', function(event) {
new Effect.ScrollTo(this.hash.substr(1));
Event.stop(event);
}.bindAsEventListener(element))
})
})

// OPEN WINDOW
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function intWin(url){
	var intWin=window.open("introduction.html","faq","width=380,height=280,toolbar=no,scrollbars=no,resizable=no,menubar=yes,status=yes");
	intWin.window.focus();
}
