var allPhotos = new Array("photo01", "photo02", "photo03", "photo04", "photo05", "photo06", "photo07", "photo08", "photo09", "photo10", "photo11", "photo12");

function hideAll(photos)
{
for ( i=0; i< allPhotos.length; i++ )
  {
	  if ( allPhotos[i] == photos ) {
		document.getElementById(allPhotos[i]).style.display='block';
		document.getElementById(allPhotos[i]+'_thumb').className='selected';
	  } else {
  		document.getElementById(allPhotos[i]).style.display='none';
		document.getElementById(allPhotos[i]+'_thumb').className='';
	  }
  }
}



$(document).ready(function () {
    $("#arrowDown").bind("click", function(){
	 $("#strip1").hide("slow");
     $("#strip2").show("slow");
    });
});


$(document).ready(function () {
    $("#arrowUp").bind("click", function(){
	 $("#strip2").hide("slow");
     $("#strip1").show("slow");
    });
});

