// JavaScript Document

function swapPic1(whichpic){
document.getElementById('gallpic').src = whichpic; 
}


function hideThumbs(whichOne) {


t1 = new Tween(document.getElementById(whichOne).style,'top',Tween.regularEaseOut,531,600,2,'px'); t1.start();


t1 = new Tween(document.getElementById('all_thumbs2').style,'top',Tween.regularEaseOut,531,531,2,'px'); t1.start();

document.getElementById('right_scroll').style.visibility = "hidden"; 
document.getElementById('left_scroll').style.visibility = "visible"; 

}

function showThumbs() {



t1 = new Tween(document.getElementById('all_thumbs2').style,'top',Tween.regularEaseOut,531,600,2,'px'); t1.start();



t1 = new Tween(document.getElementById('all_thumbs').style,'top',Tween.regularEaseOut,531,531,2,'px'); t1.start();


document.getElementById('right_scroll').style.visibility = "visible"; 
document.getElementById('left_scroll').style.visibility = "hidden"; 

}

