"use strict";

/*globals $, jQuery, document, window */

(function () {
	var root, 
		swfBgColor = 'transparent';
		
	function embed(context) {
		swfobject.embedSWF("swf/" + context + ".swf", "flash", "268", "154", "9.0.0", 
			"swf/expressInstall.swf", 
			null, {
				bgcolor: swfBgColor,
		 	 	wmode: 'transparent'
		 	});
	}
	
	function cacheImages() {
		(new Image()).src = 'images/actor_back.jpg';
		(new Image()).src = 'images/DJ_back.jpg';
		(new Image()).src = 'images/photos_back.jpg';
		(new Image()).src = 'images/press_back.jpg';
	}

	$(document).ready(function () {
		root = $('body');
		
		if (root.hasClass('live')) {
			swfBgColor = '#cccccc';
			embed('Live');	
		} else if (root.hasClass('DJ')) {
			embed('DJ');	
		} else if (root.hasClass('actor')) {
			embed('Actor');	
		} else if (root.hasClass('press')) {
			embed('Press');	
		} else if (root.hasClass('photos')) {
			embed('Photos');	
		} else if (root.hasClass('contact')) {
			
		} else {
			swfBgColor = '#ffffff';
			embed('Home');	
			cacheImages();
		}
		
	});
}());