/**
 * Media reels script
 * @author Derek Beumer <derek@thoughtstack.net>
 * @copyright Copyright (c) 2008, Derek Beumer
 * @version $Id$
 * @package lahmayer
 */

window.initMe = function (fnc) {
	if (typeof fnc == 'function') {
		// Optimally use addEventListener, which does our job for us but isn't universally supported
		if (window.addEventListener) {
			window.addEventListener('load', fnc, false);
		// Attempt to use the IE-proprietary attachEvent method alternately
		} else if (window.attachEvent) {
			window.attachEvent('onload', fnc);
		// Finally, use the standard window.onload with some hooking to preserve any previously assigned functionality
		} else {
			if (window.onload != null) {
				var onloadHook = window.onload;
				window.onload = function (e) {
					onloadHook(e);
					fnc();
				};
			} else {
				window.onload = fnc;
			}
		}
	}
};

var mediaReels = {
	init: function () {
		var container = document.getElementById('commercials-container');

		container.style.width = '320px';
		container.style.height = '280px';
		container.style.cursor = 'pointer';
		container.style.backgroundImage = 'url(/wp-content/themes/lahmayer/graphic/content/media-reels/commercials.jpg)';
		container.onclick = function () {
			mediaReels.playVideo('commercials');
		};

		container = document.getElementById('live-container');

		container.style.width = '320px';
		container.style.height = '280px';
		container.style.cursor = 'pointer';
		container.style.backgroundImage = 'url(/wp-content/themes/lahmayer/graphic/content/media-reels/live.jpg)';
		container.onclick = function () {
			mediaReels.playVideo('live');
		};

		container = document.getElementById('hosting-container');

		container.style.width = '320px';
		container.style.height = '280px';
		container.style.cursor = 'pointer';
		container.style.backgroundImage = 'url(/wp-content/themes/lahmayer/graphic/content/media-reels/hosting.jpg)';
		container.onclick = function () {
			mediaReels.playVideo('hosting');
		};

		container = document.getElementById('satellite-container');

		container.style.width = '320px';
		container.style.height = '280px';
		container.style.cursor = 'pointer';
		container.style.backgroundImage = 'url(/wp-content/themes/lahmayer/graphic/content/media-reels/satellite.jpg)';
		container.onclick = function () {
			mediaReels.playVideo('satellite');
		};
	},
	playVideo: function (video) {
		switch (video) {
		case 'commercials':
			var container = document.getElementById('commercials-container');
			container.innerHTML = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="320" height="280" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0"><param name="wmode" value="transparent" /><param name="src" value="http://lahmayer.com/wp-content/themes/lahmayer/flash/commercials.swf" /><param name="allowFullScreen" value="true" /><embed id="commercials" type="application/x-shockwave-flash" width="320" height="280" src="http://lahmayer.com/wp-content/themes/lahmayer/flash/commercials.swf" wmode="transparent" allowFullScreen="true"></embed></object>';
			container.onclick = null;
			container.style.cursor = 'default';
			break;
		case 'live':
			var container = document.getElementById('live-container');
			container.innerHTML = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="320" height="280" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0"><param name="wmode" value="transparent" /><param name="src" value="http://lahmayer.com/wp-content/themes/lahmayer/flash/live.swf" /><param name="allowFullScreen" value="true" /><embed id="live" type="application/x-shockwave-flash" width="320" height="280" src="http://lahmayer.com/wp-content/themes/lahmayer/flash/live.swf" wmode="transparent" allowFullScreen="true"></embed></object>';
			container.onclick = null;
			container.style.cursor = 'default';
			break;
		case 'satellite':
			var container = document.getElementById('satellite-container');
			container.innerHTML = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="320" height="280" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0"><param name="wmode" value="transparent" /><param name="src" value="http://lahmayer.com/wp-content/themes/lahmayer/flash/satellite.swf" /><param name="allowFullScreen" value="true" /><embed id="satellite" type="application/x-shockwave-flash" width="320" height="280" src="http://lahmayer.com/wp-content/themes/lahmayer/flash/satellite.swf" wmode="transparent" allowFullScreen="true"></embed></object>';
			container.onclick = null;
			container.style.cursor = 'default';
			break;
		case 'hosting':
			var container = document.getElementById('hosting-container');
			container.innerHTML = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="320" height="280" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0"><param name="wmode" value="transparent" /><param name="src" value="http://lahmayer.com/wp-content/themes/lahmayer/flash/hosting.swf" /><param name="allowFullScreen" value="true" /><embed id="hosting" type="application/x-shockwave-flash" width="320" height="280" src="http://lahmayer.com/wp-content/themes/lahmayer/flash/hosting.swf" wmode="transparent" allowFullScreen="true"></embed></object>';
			container.onclick = null;
			container.style.cursor = 'default';
			break;
		}
	}
};

initMe(mediaReels.init);
