// JavaScript Document
function MM_effectAppear(targetElement, duration, from, to, toggle)
{
    var obj = document.getElementById(targetElement);
    obj.style.zIndex = 100;
    /*document.all.existingLayerID.style.zIndex=50;*/
	Spry.Effect.DoFade(targetElement, {duration: duration, from: from, to: to, toggle: toggle});
}
function MM_effectFade(targetElement, duration, from, to, toggle)
{
    var obj = document.getElementById(targetElement);
    obj.style.zIndex = -100;
    /*document.all.existingLayerID.style.zIndex=50;*/
	Spry.Effect.DoFade(targetElement, {duration: duration, from: from, to: to, toggle: toggle});
}
