function flip(color) {
var eSrc = window.event.srcElement;
eSrc.style.backgroundColor=color;
}

function hilight(color) {
var eSrc = window.event.srcElement;
	if (eSrc.tagName != "A") {
	return true
	}
	else {
	eSrc.style.color=color;
	}
}

function hover(bg,color) {
var eSrc = window.event.srcElement;
 //alert (eSrc.tagName);
	if (eSrc.tagName != "A") {
	return true
	}
	else {
	eSrc.style.backgroundColor=bg;
	eSrc.style.color=color;
	}
}

function footer(color) {
var eSrc = window.event.srcElement;
 //alert (eSrc.tagName);
	if (eSrc.tagName != "A") {
	return true
	}
	else {
	eSrc.style.color=color;
	}
}

function escramble(name,anchor,color){
 var a,b,c,d,e,f
 a='<a STYLE="text-decoration:none;color:'+color+'" href=\"mai'
 b=name
 c='\">'
 
 a+='lto:'
 b+='@'
 e='</a>'
 f=anchor
 b+='mark-frankel.com'
 d=f
 document.write(a+b+c+d+e)
}

//image list
var image1=new Image() 
image1.src="slideshow/mfrankel.jpg"
var image2=new Image() 
image2.src="slideshow/solitaire.jpg"
var image3=new Image() 
image3.src="slideshow/leon.jpg"
var image4=new Image()
image4.src="slideshow/fortunehunter.jpg"
var image5=new Image()
image5.src="slideshow/kte.jpg"
var image6=new Image() 
image6.src="slideshow/rendell.jpg"
var image7=new Image() 
image7.src="slideshow/roseanna.jpg"
var image8=new Image()
image8.src="slideshow/season.jpg"
var image9=new Image()
image9.src="slideshow/yc.jpg"
//number of images 
var number_of_images=9
//speed  (in seconds)
var speed=2
var step=1
var whichimage=1

function fadeit(){
   if (!document.images)
      return
   if (document.all)
      fade.filters.blendTrans.apply()
   document.images.fade.src=eval("image"+step+".src")
   if (document.all)
      fade.filters.blendTrans.play()
   whichimage=step
   if (step<number_of_images)
      step++
   else
      step=1
   if (document.all)
      setTimeout("fadeit()",speed*1000+3000)
   else
      setTimeout("fadeit()",speed*1000)
}
function fadelink(){

   if (whichimage==1)
      window.location="slideshow/"
   else if (whichimage==2)
      window.location="slideshow/"
   else if (whichimage==3)
      window.location="slideshow/"
   else if (whichimage==4)
      window.location="slideshow/"
   else if (whichimage==5)
      window.location="slideshow/"
   else if (whichimage==6)
      window.location="slideshow/"
   else if (whichimage==7)
      window.location="slideshow/"
   else if (whichimage==8)
      window.location="slideshow/"
   else if (whichimage==9)
      window.location="slideshow/"
}

/// POPUP GALLERY ///
function makeGalleryWindow(url) {
var newWindow
newWindow = window.open(url,"Gallery","HEIGHT=460,WIDTH=320,left=0,top=0,resizable=yes");
newWindow.focus();
// -->
}



