//initialize low opacity value 1 to 100
var her_smile=50
//high to low FX
function heavenly(GlowLikeChrysanthi) 
   {
			imgobj=GlowLikeChrysanthi
			browserdetect=GlowLikeChrysanthi.filters? "ie" : typeof GlowLikeChrysanthi.style.MozOpacity=="string"? "mozilla" : ""
			adore(her_smile)
			//time interval in milliseconds, obj 1 to 100 for IE 0.1 to 0.99 for FF
			MakeGlowLikeChrysanthi=setInterval("gradualfade(imgobj)",25)
   }
//low to high FX
function slowly(GlowLikeChrysanthi)
      {
			here_we_go_again()
			adore(her_smile)
       }
//replace opacity 
function adore(her_face)
      {
			if (browserdetect=="mozilla")
			imgobj.style.MozOpacity=her_face/100
			else if (browserdetect=="ie")
			imgobj.filters.alpha.opacity=her_face
      }
//clear timer
function here_we_go_again()
      {
			if (window.MakeGlowLikeChrysanthi) clearInterval(MakeGlowLikeChrysanthi)
      }

function gradualfade(friend)
     {
			if (browserdetect=="mozilla" && friend.style.MozOpacity<1)
			friend.style.MozOpacity=Math.min(parseFloat(friend.style.MozOpacity)+0.1, 0.99)
			else if (browserdetect=="ie" && friend.filters.alpha.opacity<100)
			friend.filters.alpha.opacity+=10
			else if (window.MakeGlowLikeChrysanthi)
			clearInterval(MakeGlowLikeChrysanthi)
     }
