//	=============================================
//	swfir!
//	=============================================
//	Copyright 2006, 2007 Jon Aldinger, Mark Huot
//	and Dan Mall
//
//	This software is licensed under the CC-GNU LGPL
//	http://creativecommons.org/licenses/LGPL/2.1/
//	---------------------------------------------

//	=============================================
//	Get DOM Elements with CSS Selectors
//	=============================================
//	Use this function to call DOM elements by
//	passing in a CSS selector such as 'p .date'
//	---------------------------------------------


//	=============================================
//	Hold References to swfir Objects
//	=============================================
//	This class holds references to the various
//	swfir objects on the page.  It is called by
//	flash when the swf is resized
//	---------------------------------------------
function swfirController()
{

	this.swfirs = new Array();

	this.addswfir = function ( swfirReference )
	{
		var swfirId = this.swfirs.length;
		this.swfirs[swfirId] = swfirReference;
		return swfirId;
	}

	this.getswfirs = function()
	{
		return this.swfirs;
	}

	this.getNextId = function()
	{
		return this.swfirs.length;
	}

	this.resize = function( id, width, height )
	{
		if(this.swfirs[id].elasticityWidth == false)
		{
			this.swfirs[id].setAttribute("width", width);
			this.swfirs[id].style.width = width+'px';
		}

		this.swfirs[id].setAttribute("height", height);
		this.swfirs[id].style.height = height+'px';
	}

}
var firController = new swfirController();

//	=============================================
//	Swap the IMG
//	=============================================
//	The meat and potatoes.  This class accepts
//	params and swaps the specified images with
//	swf's.
//	---------------------------------------------
function swfir()
{

	/*
		Global Variables
	*/
	this.name = "swfir";
	this.version = "1.1.1";
	this.debug = false;
	this.parameters = new Object();
	this.background = "";
	this.src = "/images/swfir.swf";
	this.wmode = 'transparent';
	this.elasticityWidth = false;

	/*
		Set Parameters
	*/
	this.specify = function( key, value )
	{
		if(key == "debug")
		{
			if(value == true || value == "true")
			{
				this.debug = true;
			}
			else
			{
				this.debug = false;
			}
			return;
		}
		if(key == 'wmode')
		{
			this.wmode = value;
		}
		if(key == "background-color")
		{
			this.background = this.cleanColor(value);
			return;
		}
		if(key == "border-color" || key == "shadow-color")
		{
			value = this.cleanColor(value, "flash");
		}
		if(key == "shadow-blur")
		{
			this.parameters["shadowBlurX"] = value;
			this.parameters["shadowBlurY"] = value;
			acceptableFound = true;
		}
		if(key == "border-radius" || key == "border-width" || key == "border-alpha" || key == "shadow-blur-x" || key == "shadow-blur-y")
		{
			value = parseFloat(value);
			if((value == NaN || value == "NaN") && this.debug == true)
			{
				this.error("'"+key+"' must be a number.  Please make sure in your source there are no quotes (\") around the number.");
			}
		}
		if(key == "rotate" && Number(value) < 0)
		{
			value = 360 + Number(value);
		}
		if(key == "src")
		{
			this.src = value;
			return;
		}
		if(key == 'elasticity')
		{
			if(parseFloat(value))
			{
				this.elasticityWidth = value;
			}
			else
			{
				var tmp = document.createElement('div');
					tmp.style.position = 'absolute';
					tmp.style.left = '-10em';
					tmp.style.width = '1em';
					tmp.style.height = '1em';
				document.body.appendChild(tmp);

				this.elasticityWidth = tmp.offsetHeight;

				tmp.parentNode.removeChild(tmp);
			}
			return;
		}

		var translation = new Array();
		translation["border-radius"] = "borderRadius";
		translation["border-width"] = "borderWidth";
		translation["border-color"] = "borderColor";
		translation["shadow-offset"] = "shadowOffset";
		translation["shadow-angle"] = "shadowAngle";
		translation["shadow-alpha"] = "shadowAlpha";
		translation["shadow-blur-x"] = "shadowBlurX";
		translation["shadow-blur-y"] = "shadowBlurY";
		translation["shadow-strength"] = "shadowStrength";
		translation["shadow-color"] = "shadowColor";
		translation["shadow-quality"] = "shadowQuality";
		translation["shadow-inner"] = "shadowInner";
		translation["shadow-knockout"] = "shadowKnockout";
		translation["shadow-hide"] = "shadowHide";
		translation["rotate"] = "rotate";
		translation["overflow"] = "overflow";
		translation["link"] = "link";

		this.parameters[translation[key]] = value;
	}

	/*
		Swap SWF
	*/
	this.swap = function( selector )
	{

		/*if(typeof(selector).toLowerCase() == 'string')
		{
			var elements = document.getElementsBySelector(selector);
		}
		else if(selector.nodeName)
		{
			var elements = [selector];
		}
		else if(selector.length != 0)
		{
			var elements = selector;
		}

		if(this.hasImg(elements) == false)
		{
			var elements = document.getElementsBySelector(selector+" img");
			if(this.hasImg(elements) == false && this.debug == true)
			{
				this.error("No images were selected with the selector '"+selector+"'");
				return;
			}
		}*/

		elements = $$(selector);

		for(var i=0; i<elements.length; i++)
		{
			/*
				Embed Params
			*/
			var id = "";
			var className = "";
			var style = "";
			var width = "";
			var height = "";
			var bgcolor = "";
			var src = this.src;
			var flashvars = "";

			/*
				Retain some existing parameters
			*/
			if(elements[i].getAttribute("id"))
			{
				id = elements[i].getAttribute("id");
			}
			if(elements[i].className != '')
			{
				className = elements[i].className+' swfir';
			}
			else
			{
				className = 'swfir';
			}

			if(this.background != "")
			{
				bgcolor = this.background;
			}
			if(elements[i].getAttribute("style"))
			{
				if(elements[i].style.cssText && elements[i].style.cssText != "")
				{
					style += elements[i].style.cssText+";";
				}
				else if(typeof elements[i].getAttribute("style") == "string")
				{
					style += elements[i].getAttribute("style");
				}
			}

			width = elements[i].width;
			height = elements[i].height;

			if(this.elasticityWidth != false)
			{
				if(style != "") style += " ";
				style += "width:"+(width / this.elasticityWidth)+"em;";
			}
			else
			{
				if(elements[i].getAttribute("width",2))
				{
					if(style != "") style += " ";
					style += "width:"+elements[i].getAttribute("width",2)+";";
				}
				if(elements[i].getAttribute("height",2))
				{
					if(style != "") style += " ";
					style += "height:"+elements[i].getAttribute("height",2)+";";
				}
			}

			/*
				Pass in Width/Height
			*/
			this.parameters['srcWidth'] = width;
			this.parameters['srcHeight'] = height;

			/*
				Flash Vars
			*/
			var varString = "";
			for(var key in this.parameters){ varString += ("&"+key+'='+ this.parameters[key]); }

			/*
				Is there a link
			*/
			if((elementLink = this.withinLink(elements[i])) != false && !this.parameters["link"])
			{
				varString += "&link="+elementLink.href.replace(/\?/g,"%3F").replace(/&/g,"%26");
			}

			/*
				Add the vars
			*/
			flashvars = "url="+elements[i].src+varString+"&swfirId="+firController.getNextId();

			/*
				Create Container Span
			*/
			var span = document.createElement('span');
				if(id) span.setAttribute("id", id);
				if(className) span.className = className;
			elements[i].parentNode.insertBefore(span, elements[i]);
			span.appendChild(elements[i].parentNode.removeChild(elements[i]));

			/*
				Add the Flash
			*/
			var so = new SWFObject(this.src, "swfir"+firController.getNextId(), width, height, "6", this.bgcolor);
				if(style != "") so.setAttribute('style', style);
				so.addParam('flashvars', flashvars);
				so.addParam("menu", "false");
				so.addParam("wmode", this.wmode);
			so.write(span);

			/*
				Remember Me
			*/
			firController.addswfir(span.firstChild);
		}
	}

	this.cleanColor = function( color, style )
	{
		color = color.replace(/^0x/, '');
		color = color.replace(/^#/, '');
		if(color.length == "3")
		{
			color = color.substring(0,1)+color.substring(0,1)+color.substring(1,2)+color.substring(1,2)+color.substring(2,3)+color.substring(2,3);
		}
		if(style == "flash")
		{
			color = "0x"+color;
		}
		else
		{
			color = "#"+color;
		}
		return color;
	}

	this.hasImg = function ( elementList )
	{
		for(var i=0; i<elementList.length; i++)
		{
			if(elementList[i].nodeName == "IMG")
			{
				return true;
			}
		}
		return false;
	}

	this.withinLink = function( element )
	{
		while(element.nodeName != "A")
		{
			if(element.parentNode)
			{
				element = element.parentNode;
			}
			else
			{
				return false;
			}
		}
		return element;
	}

	this.error = function( alertString )
	{
		alert(this.name+" "+this.version+" Error\n\n"+alertString);
	}
}