﻿// JavaScript Document

var titles = new Array();
titles['large_1'] = '<p><strong>Sign Up</strong></p>';
titles['large_2'] = '<p><strong>Line of Sight</strong></p>';
titles['large_3'] = '<p><strong>All-Stars</strong></p>';
titles['large_4'] = '<p><strong>Bles You</strong></p>';
titles['large_5'] = '<p><strong>Looking Out</strong></p>';
titles['large_6'] = '<p><strong>Assembly</strong></p>';
titles['large_7'] = '<p><strong>The Coosh is here</strong></p>';
titles['large_8'] = '<p><strong>Play Time</strong></p>';
titles['large_9'] = '<p><strong>Ladies Keep It Tight</strong></p>';
titles['large_10'] = '<p><strong>Stays On?</strong></p>';
titles['large_11'] = '<p><strong>Lotuz sighting</strong></p>';
titles['large_12'] = '<p><strong>The Tools of the Trade</strong></p>';

var captions = new Array();
captions['large_1'] = '<p><strong>Coosh fans ask for a picture by the banner</strong></p>';
captions['large_2'] = '<p><strong>The spacious Paramount Theatre had the kids up front and comfortable seats for the adults in the balcony</strong></p>';
captions['large_3'] = '<p><strong>The Tsunami All-Stars came all the way from Brazil to participate in Coosh Crash Test</strong></p>';
captions['large_4'] = '<p><strong>Massive Monkee master mixer Dj Bles One plays the final battle</strong></p>';
captions['large_5'] = '<p><strong>Fans hang on every move at the Coosh Crash Test</strong></p>';
captions['large_6'] = '<p><strong>Juseboogy and Ana Banana pass out Coosh Crash Test flyers after a show at Chief Sealth high school in Seattle</strong></p>';
captions['large_7'] = '<p><strong>Ana Banana gives away Coosh headsets to the students that participated in the open circle at the end of the assembly</strong></p>';
captions['large_8'] = '<p><strong>A brave Chief Sealth student shows his top rock to the entire school</strong></p>';
captions['large_9'] = '<p><strong>Ana Banana of Massive Monkees cheers for a female Chief Sealth student that has the moves down</strong></p>';
captions['large_10'] = '<p><strong>Chief Sealth high school students want to know more about the Coosh product</strong></p>';
captions['large_11'] = '<p><strong>Massive Monkees other female member Lotuz is in the house, along with a friend from Texas crew Jive Turkeys</strong></p>';
captions['large_12'] = '<p><strong>Massive Monkees passed out 13,000 flyers, 67 Cooshs and 500 free tickets for Coosh Crash Test</strong></p>';


var moving = false;
var current = 'left';
var timeout;


function hideAll(){
	all_divs = $('esb_large_img').select('div');
	all_divs.each(function(item) {
		$(item).hide();
	});
	return false;
}

function show_layer(num) {
	//alert(model)
	hideAll();
	$(num).show();
	$('title_of_photos').innerHTML = titles[num];
	if (titles[num] == null ) {
		$('title_of_photos').innerHTML = '';
	}
	$('caption_of_photos').innerHTML = captions[num];
	if (captions[num] == null ) {
		$('caption_of_photos').innerHTML = '';
	}
	
	return false
}

function moveLeft(){
	if(!moving){
		var left = $('esb_banner').getStyle('left');	
		left.replace("px","");	
		left = parseInt(left);
		if(left < 0 ){
			slideLeft();
			if(left == -620){
				clearTimeout(timeout);
			}else if(left == -440){
				clearTimeout(timeout);
			}
		} else {
			clearTimeout(timeout);
		}
	}
	return false;
}

function slideLeft(){
	var left_px = $('esb_banner').getStyle('left');
	left_px.replace("px","");
	left_px = parseInt(left_px) + 20;
	$('esb_banner').setStyle({ left:left_px+'px' });
	timeout = setTimeout ( "moveLeft()", 50 );
}


function moveRight(){
	if(!moving){
		var left = $('esb_banner').getStyle('left');	
		left.replace("px","");	
		left = parseInt(left);
		if(left > -584){
			slideRight();
			if (left == -400) {
				clearTimeout(timeout);
			}else if(left == -585) {
				clearTimeout(timeout);
			}
		} else {
			clearTimeout(timeout);
		}
	}
	return false;
}



function slideRight(){
	var left_px = $('esb_banner').getStyle('left');
	left_px.replace("px","");
	left_px = parseInt(left_px) - 20;
	$('esb_banner').setStyle({ left:left_px+'px' });
	timeout = setTimeout ( "moveRight()", 50 );
}




