//맘마 기본 자바스크립트

//마우스롤오버
  function over_img(pPath, pName){
    document.images[pName].src = pPath;
  }
  function out_img(pPath, pName){
    document.images[pName].src = pPath;
  }
  
//즐겨찾기추가
var favoriteurl="http://www.academ.co.kr"
var favoritetitle="아케데미닷컴"
function addfavorites(){
if (document.all)
window.external.AddFavorite(favoriteurl,favoritetitle)
}

//클릭시탑이동
	function go_scroll_top(){
		if (document.documentElement && document.documentElement.scrollTop){
			document.documentElement.scrollTop = 0;

		} else {
			document.body.scrollTop = 0;
		}
	}

