var currentSlideIndex = 0;

function onTransition(index)
{
	setTransitionClass(currentSlideIndex, '');
	setTransitionClass(index, 'selected');
	currentSlideIndex = index;
}

function setTransitionClass(index, className)
{
	var oLI = document.getElementById('section-F-' + index);
  var oLIShopNow = document.getElementById('section-F-shop-now');
  var oLIShopNowLink = (oLIShopNow) ? oLIShopNow.childNodes[0] : null;
	if(oLI)
		oLI.className = className;
	if(oLIShopNowLink && sectionF[index])
		oLIShopNowLink.setAttribute('href', sectionF[index]);
}

function setSlide(index)
{
	var oFlash = thisMovie('home');
	if(oFlash)
		oFlash.setSlide(index);
}

function thisMovie(movieName)
{
	if (navigator.appName.indexOf('Microsoft') != -1)
		return window[movieName];
	else
		return document[movieName];
}
