var siteurl = "http://www.nylatinofilm.com/";

jsHover = function()
	{
		var hEls = document.getElementById("nav").getElementsByTagName("LI");
		for (var i=0, len=hEls.length; i<len; i++) {
			if ((hEls[i].className == 'mfilms')||
				(hEls[i].className == 'mtickets')||
				(hEls[i].className == 'minfo')||
				(hEls[i].className == 'mpress')||
				(hEls[i].className == 'mextras')) {
				hEls[i].onmouseover = function() { this.className+=" jshover"; }
				hEls[i].onmouseout = function() { this.className = this.className.replace(" jshover", ""); }
			}
		}
	}
	if (window.attachEvent && navigator.userAgent.indexOf("Opera")==-1) window.attachEvent("onload", jsHover);



gSlideshowInterval = 2;
gNumberOfImages = 37;

gUrl = new Array(gNumberOfImages);
gUrl[0] = "http://hbolatino.com/";
gUrl[1] = "http://www.heineken.com/";
gUrl[2] = "http://www.tnt.tv/";
gUrl[3] = "http://www.tbs.com/";
gUrl[4] = "http://suzukiauto.com/";
gUrl[5] = "http://www.aa.com/";
gUrl[6] = "http://www.wnbc.com/";
gUrl[7] = "http://telemundo.yahoo.com/";
gUrl[8] = "http://www.timewarnercable.com/";
gUrl[9] = "http://www.nydailynews.com/";
gUrl[10] = "http://www.ktu.com/";
gUrl[11] = "http://www.hollywoodreporter.com/";
gUrl[12] = "http://www.impre.com/";
gUrl[13] = "http://www.televisanetworks.tv/perfil.asp?idc=12";
gUrl[14] = "http://www.televisanetworks.tv/perfil.asp?idc=15";
gUrl[15] = "http://www.absolut.com/";
gUrl[16] = "http://www.sauzatequila.com/3G/";
gUrl[17] = "http://www.javacabana.com/";
gUrl[18] = "http://www.kodakgallery.com/";
gUrl[19] = "http://www.latina.com/";
gUrl[20] = "http://www.overturefilms.net/";
gUrl[21] = "http://www.statestreetpictures.com/";
gUrl[22] = "http://www.elespecial.com/";
gUrl[23] = "http://www.elespecial.com/";
gUrl[24] = "http://www.rogersmith.com/";
gUrl[25] = "http://www.migente.com/";
gUrl[26] = "http://www.nocehlatina.com/";
gUrl[27] = "http://www.avid.com/";
gUrl[28] = "http://www.bmi.com/";
gUrl[29] = "http://ethoswater.com/";
gUrl[30] = "http://www.showbizsoftware.com/";
gUrl[31] = "http://www.nyc.gov/html/lmec/html/home/home.shtml";
gUrl[32] = "http://www.nyc.gov/html/film/html/index/index.shtml";
gUrl[33] = "http://www.nyc.gov/html/film/html/home/made_newyork.shtml";
gUrl[34] = "http://www.tribecafilminstitute.org/taa/";
gUrl[35] = "http://www.lpbp.org/";
gUrl[36] = "http://crunch.com/";



gImages = new Array(gNumberOfImages);
gImages[0] = siteurl+"img/rotation/hbolatino.gif";
gImages[1] = siteurl+"img/rotation/heineken.gif";
gImages[2] = siteurl+"img/rotation/tnt.gif";
gImages[3] = siteurl+"img/rotation/tbs.gif";
gImages[4] = siteurl+"img/rotation/suzukiauto.gif";
gImages[5] = siteurl+"img/rotation/aa.gif";
gImages[6] = siteurl+"img/rotation/wnbc.gif";
gImages[7] = siteurl+"img/rotation/telemundo.gif";
gImages[8] = siteurl+"img/rotation/timewarnercable.gif";
gImages[9] = siteurl+"img/rotation/nydailynews.gif";
gImages[10] = siteurl+"img/rotation/ktu.gif";
gImages[11] = siteurl+"img/rotation/hollywoodreporter.gif";
gImages[12] = siteurl+"img/rotation/impre.gif";
gImages[13] = siteurl+"img/rotation/televisanetworks1.gif";
gImages[14] = siteurl+"img/rotation/televisanetworks2.gif";
gImages[15] = siteurl+"img/rotation/absolute.gif";
gImages[16] = siteurl+"img/rotation/sauzatequila.gif";
gImages[17] = siteurl+"img/rotation/javacabana.gif";
gImages[18] = siteurl+"img/rotation/kodakgallery.gif";
gImages[19] = siteurl+"img/rotation/latina.gif";
gImages[20] = siteurl+"img/rotation/overturefilms.gif";
gImages[21] = siteurl+"img/rotation/statestreetpictures.gif";
gImages[22] = siteurl+"img/rotation/elespecial.gif";
gImages[23] = siteurl+"img/rotation/elespecial2.gif";
gImages[24] = siteurl+"img/rotation/rogersmith.gif";
gImages[25] = siteurl+"img/rotation/migente.gif";
gImages[26] = siteurl+"img/rotation/nocehlatina.gif";
gImages[27] = siteurl+"img/rotation/avid.gif";
gImages[28] = siteurl+"img/rotation/bmi.gif";
gImages[29] = siteurl+"img/rotation/ethoswater.gif";
gImages[30] = siteurl+"img/rotation/showbizsoftware.gif";
gImages[31] = siteurl+"img/rotation/nyc.gif";
gImages[32] = siteurl+"img/rotation/mayorsoffice.gif";
gImages[33] = siteurl+"img/rotation/made_in_ny.gif";
gImages[34] = siteurl+"img/rotation/tribeca.gif";
gImages[35] = siteurl+"img/rotation/lpbp.gif";
gImages[36] = siteurl+"img/rotation/crunch.gif";


function canManipulateImages() {
	if (document.images)
		return true;
	else
		return false;
}
function loadSlide(imageURL, sponsorURL) {
	if (gImageCapableBrowser) {
		document.slide.src = imageURL;
		document.getElementById("slide_url").href = sponsorURL;
		return false;
	}
	else {
		return true;
	}
}
function nextSlide() {
	gCurrentImage = (gCurrentImage + 1) % gNumberOfImages;
	loadSlide(gImages[gCurrentImage],gUrl[gCurrentImage]);
}
gImageCapableBrowser = canManipulateImages();
gCurrentImage = 0;
setInterval("nextSlide()",gSlideshowInterval * 1000);






gslideshowInterval_1 = 6;
gNumberOfImages_1 = 22;



gUrl_1 = new Array(gNumberOfImages_1);
gUrl_1[0] = "http://www.hbolatino.com/";
gUrl_1[1] = "http://www.heineken.com/";
gUrl_1[2] = "http://www.directv.com/";
gUrl_1[3] = "http://www.aa.com/mismillas";
gUrl_1[4] = "http://www.ktu.com/";
gUrl_1[5] = "http://www.931amor.com";
gUrl_1[6] = "http://www.clarins.com/";
gUrl_1[7] = "http://www.cinedulce.com/";
gUrl_1[8] = "http://www.javacabana.com/";
gUrl_1[9] = "http://www.glaceau.com/";
gUrl_1[10] = "http://www.elespecial.com/";
gUrl_1[11] = "http://www.mayaindieseries.com/";
gUrl_1[12] = "http://www.3gsociety.com/";
gUrl_1[13] = "http://www.cinelatino.com/";
gUrl_1[14] = "http://www.clearviewcinemas.com/";
gUrl_1[15] = "http://www.sag.org/";
gUrl_1[16] = "http://www.www.nyc.gov/film/";
gUrl_1[17] = "http://www.hiccupmedia.com/";
gUrl_1[18] = "http://www.kodak.com/go/motion";
gUrl_1[19] = "http://www.chadallison.com";
gUrl_1[20] = "http://www.karmaloop.com";
gUrl_1[21] = "http://www.theimperialnyc.com/";





gImages_1 = new Array(gNumberOfImages_1);
gImages_1[0] = siteurl+"img/right/HBO_Latino_epitafios.gif";
gImages_1[1] = siteurl+"img/right/heineken.jpg";
gImages_1[2] = siteurl+"img/right/dtv.jpg";
gImages_1[3] = siteurl+"img/right/AAdvantage-NYLFF.jpg";
gImages_1[4] = siteurl+"img/right/ktu.jpg";
gImages_1[5] = siteurl+"img/right/931amor.jpg";
gImages_1[6] = siteurl+"img/right/clarins.jpg";
gImages_1[7] = siteurl+"img/right/cinedulce.jpg";
gImages_1[8] = siteurl+"img/right/javacabana.jpg";
gImages_1[9] = siteurl+"img/right/vw.jpg";
gImages_1[10] = siteurl+"img/right/elespecial.gif";
gImages_1[11] = siteurl+"img/right/maya.gif";
gImages_1[12] = siteurl+"img/right/tg.jpg";
gImages_1[13] = siteurl+"img/right/cinelatino.jpg";
gImages_1[14] = siteurl+"img/right/clearview.gif";
gImages_1[15] = siteurl+"img/right/sag.jpg";
gImages_1[16] = siteurl+"img/right/NYCFilm.gif";
gImages_1[17] = siteurl+"img/right/hiccup.jpg";
gImages_1[18] = siteurl+"img/right/kodak.jpg";
gImages_1[19] = siteurl+"img/right/chadallison.jpg";
gImages_1[20] = siteurl+"img/right/karmaloop.jpg";
gImages_1[21] = siteurl+"img/right/Imperial.gif";




function canManipulateImages_1() {
	if (document.images)
		return true;
	else
		return false;
}
function loadslide_1_1(imageURL_1, sponsorURL_1) {
	if (gImageCapableBrowser_1) {
		document.slide_1.src = imageURL_1;
		document.getElementById("slide_1_url").href = sponsorURL_1;
		return false;
	}
	else {
		return true;
	}
}
function nextslide_1() {
	gCurrentImage_1 = (gCurrentImage_1 + 1) % gNumberOfImages_1;
	loadslide_1_1(gImages_1[gCurrentImage_1],gUrl_1[gCurrentImage_1]);
	/*loads counter tage for gUrl_1[5] */
	document.getElementById('counter_tag').src = (gCurrentImage_1 == 5) ? 'http://s0b.bluestreak.com/ix.e?ir&s=7708548&n=Insert_Time_Date_Stamp_Here' : '';
}
gImageCapableBrowser_1 = canManipulateImages_1();
gCurrentImage_1 = 0;
setInterval("nextslide_1()",gslideshowInterval_1 * 1000);


