 
  
 // Top na Drop down menu
var timeout	= 500;
var closetimer	= 0;
var ddmenuitem	= 0;

function mopen(id)
{	
	
	mcancelclosetime();


	if(ddmenuitem) ddmenuitem.style.visibility = 'hidden';


	ddmenuitem = document.getElementById(id);
	ddmenuitem.style.visibility = 'visible';

}

function mclose()
{
	if(ddmenuitem) ddmenuitem.style.visibility = 'hidden';
}


function mclosetime()
{
	closetimer = window.setTimeout(mclose, timeout);
}


function mcancelclosetime()
{
	if(closetimer)
	{
		window.clearTimeout(closetimer);
		closetimer = null;
	}
}

// close layer when click-out
document.onclick = mclose; 
		
		

/* Tab Switching */
$(function(){$(".tabMenu").each(function(B,D){var A=$(D).children("li");var C=$(D).nextAll(".tabContent");if(A.length==0){return }if(A.length!=C.length){return }A.each(function(F,E){C.eq(F)[$(E).hasClass("selected")?"show":"hide"]();$(E).find("a").click(function(G){$('#audioflashcontent').replaceWith('<div class="content span-8 last" id="audioflashcontent" style="display:none; text-align:center;  margin-top:2px;"></div>'); A.removeClass("selected").eq(F).addClass("selected");G.preventDefault();C.hide();C.eq(F).show();return false})})})});


function changeVideo(vidid, contentHolder)
{
    //alert(vidid);
	var flashvars = {
		height:"270",
        width:"310",
        file:"http://multimedia.timeslive.co.za/flvideo/" + vidid + ".flv",
        image:"http://multimedia.timeslive.co.za/thumbs/imgcache/290x201-" + vidid + ".jpg",
        plugins: "gapro-1",
        'gapro.accountid': "UA-9714899-4",
        'gapro.trackstarts': "true",
        'gapro.tracktime': "true",
        'gapro.trackpercentage': "true",
		abouttext:"TimesLIVE Multimedia",
        aboutlink:"http://multimedia.timeslive.co.za"
		};

	var params = {
		allowfullscreen: "true",
		wmode: "transparent",
		allowScriptAccess: "always"
		};

	var attributes = {};

	swfobject.embedSWF("http://multimedia.timeslive.co.za/player/tlplayer.swf", contentHolder, "310", "270", "8","", flashvars, params, attributes);
 }

function changeAudio(audid, contentHolder)
{
    //alert(vidid);
	var flashvars = {
		height:"270",
        width:"310",
        file:"http://multimedia.timeslive.co.za/mp3/"+audid+".mp3",
        image:"http://multimedia.timeslive.co.za/thumbs/imgcache/290x201-" + audid + ".jpg",
        plugins: "gapro-1",
        'gapro.accountid': "UA-9714899-4",
        'gapro.trackstarts': "true",
        'gapro.tracktime': "true",
        'gapro.trackpercentage': "true",
		abouttext:"TimesLIVE Multimedia",
        aboutlink:"http://multimedia.timeslive.co.za"
		};

	var params = {
		allowfullscreen: "true",
		wmode: "transparent",
		allowScriptAccess: "always"
		};

	var attributes = {};

	swfobject.embedSWF("http://multimedia.timeslive.co.za/player/tlplayer.swf", contentHolder, "310", "270", "8","", flashvars, params, attributes);
}

function InformElement (SectionName, SectionDiv,InformFunction)
{
            this.SectionName  = SectionName;
            this.SectionDiv = SectionDiv;
            this.InformFunction = InformFunction;
}

var arrInformArray = new Array();



