﻿// JavaScript Document

var titles = new Array();
titles['large_1'] = '<p><strong>Fearsome Foursome</strong></p>';
titles['large_2'] = '<p><strong>All Countries, All Crews</strong></p>';
titles['large_3'] = '<p><strong>Hype!</strong></p>';
titles['large_4'] = '<p><strong>Fire &amp; Ice</strong></p>';
titles['large_5'] = '<p><strong>Soul Shifter Tactics</strong></p>';
titles['large_6'] = '<p><strong>Mean Mugs</strong></p>';
titles['large_7'] = '<p><strong>Jo Denim</strong></p>';
titles['large_8'] = '<p><strong>Arm Bar</strong></p>';
titles['large_9'] = '<p><strong>Born Again</strong></p>';
titles['large_10'] = '<p><strong>Bob’s Finger</strong></p>';
titles['large_11'] = '<p><strong>Elevated Focus</strong></p>';
titles['large_12'] = '<p><strong>Renegade funk</strong></p>';
titles['large_13'] = '<p><strong>Is the illest…</strong></p>';
titles['large_14'] = '<p><strong>Why you no clap?</strong></p>';

var captions = new Array();
captions['large_1'] = '<p><strong>From left to right: Fever One, Wicket, Jeromeskee, Iron Mike Brysen</strong></p>';
captions['large_2'] = '<p><strong>As only Jamel Shabazz can, this picture featured all the artists and it was taken as the stage directors kicked us out.</strong></p>';
captions['large_3'] = '<p><strong>The Paramount Theatre floor was raised three-feet so the fans that made it up front had a great view. </strong></p>';
captions['large_4'] = '<p><strong>Twixx and Jeromeskee execute a signature routine with Big World Breaks band in the background.</strong></p>';
captions['large_5'] = '<p><strong>B-boy FREE crouches in thought as his partner Orb sets the circle on fire.</strong></p>';
captions['large_6'] = '<p><strong>Ground Kings crew brought that old swagger back, and it carried them to the finals.</strong></p>';
captions['large_7'] = '<p><strong>Massive Monkees’ Jo Rawk hosts the event, and participates in the Crew stage show – double duty.</strong></p>';
captions['large_8'] = '<p><strong>Massive Monkees “arm bar” routine is known around the world. Brysen illustrates here.</strong></p>';
captions['large_9'] = '<p><strong>B-boy Born of Rivers Crew Korea lays down a run while Xisco of the Netherlands wonders where he got that combo from?</strong></p>';
captions['large_10'] = '<p><strong>B.o.B and Playboy Tre brought their own dance moves during their set as the b-boys rested for the final battle.</strong></p>';
captions['large_11'] = '<p><strong>Thesis of Knuckleheads focuses hard on b-boy Focus of Flow Mo Crew.</strong></p>';
captions['large_12'] = '<p><strong>B-boy Wicket showed why he is copied around the globe in battling eventual champions Boogie Brats.</strong></p>';
captions['large_13'] = '<p><strong>Pacific Division runs wild on stage rapping over classic 80s hip-hop samples.</strong></p>';
captions['large_14'] = '<p><strong>Salah plays to the crowd in a call and response fashion using one of his hilarious voice characters.</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 == -770){
				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 > -749){
			slideRight();
			if (left == -400) {
				clearTimeout(timeout);
			}else if(left == -750) {
				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 );
}



