document.observe("dom:loaded", function()  {									 
	prepZooms();
	insertZoomHTML();
	zoomdiv = document.getElementById(zoomID);  
	zoomimg = document.getElementById(theID);
});

function runTest0() {
    var ul1 = $$("#horizontal_carousel .container ul").first();
    marcas_propias_carousel = new UI.Carousel("horizontal_carousel", {autoGlide: true});
} 

function runTest1() {
    var ul2 = $$("#horizontal_carousel2 .container ul").first();
	locales_carousel = new UI.Carousel("horizontal_carousel2", {autoGlide: false});
} 

function popup(pagina) {
	var opciones="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width=1015, height=600, top=85, left=140";
	window.open(pagina,"",opciones);
}	

function load() {
	var a = $('horizontal_carousel2');
	var b = $('horizontal_carousel');
	if (a) {
		runTest1();
	}
	if (b) {
		runTest0();	
	}

}

Event.observe(window, "load", load);


