//Generate transition CSS (transition=0 to 23)
document.write('<STYLE TYPE="text/css">.imgTrans{ filter:revealTrans(duration=0.4,transition=12) }</STYLE>');

//Uncomment the next line for fading rollovers instead of dissolving:
document.write('<STYLE TYPE="text/css">.imgTrans{ filter:blendTrans(duration=0.4) }</STYLE>');

var onImages=new Array();
function Rollover(imgName, imgSrc)
{
	onImages[imgName] = new Image();
	onImages[imgName].src = imgSrc;
}

function turnOn(imgName){ 
	if(document.images[imgName].filters != null)
		document.images[imgName].filters[0].apply();
	document.images[imgName].offSrc = document.images[imgName].src;
	document.images[imgName].src    = onImages[imgName].src;
	if(document.images[imgName].filters != null)
		document.images[imgName].filters[0].play();
}

function turnOff(imgName){ 
	if(document.images[imgName].filters != null)
		document.images[imgName].filters[0].stop();
	document.images[imgName].src = document.images[imgName].offSrc;
}

//Specify name of participating images, plus paths to their onMouseover replacements:
Rollover("home", "http://www.latalklive.com/new/templates/talklive/images/home_over.png");
Rollover("schedule", "http://www.latalklive.com/new/templates/talklive/images/schedule_over.png");
Rollover("shows", "http://www.latalklive.com/new/templates/talklive/images/shows_over.png");
Rollover("hosts", "http://www.latalklive.com/new/templates/talklive/images/hosts_over.png");
Rollover("ondemand", "http://www.latalklive.com/new/templates/talklive/images/on_demand_over.png");
Rollover("social", "http://www.latalklive.com/new/templates/talklive/images/social_over.png");
Rollover("advertise", "http://www.latalklive.com/new/templates/talklive/images/advertise_over.png");
Rollover("guests", "http://www.latalklive.com/new/templates/talklive/images/guests_over.png");
Rollover("contact", "http://www.latalklive.com/new/templates/talklive/images/contact_over.png");
