//	=============================================
//	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'
//	---------------------------------------------
function getAllChildren(e)
{
	return e.all ? e.all : e.getElementsByTagName('*');	
}
function checkToken(hint, element, context)
{
	/*
	If we're not limiting */
	if(hint == "") return true;
	
	/*
	Descendant Selector */
	else if(hint == ">")
	{
		context = context.firstChild;
		while(context)
		{
			if(context == element) return true;
			context = context.nextSibling;
		}
	}
	
	/*
	First Child Selector */
	else if(hint == "first-child")
	{
		context = context.firstChild;
		while(context.nodeName == "#text")
		{
			if(context.firstChild)
			{
				context = context.firstChild;
			}
			else
			{
				context = context.nextSibling;
			}
		}
		if(context == element) return true;
	}
	
	/*
	:link selector */
	else if(hint == "a")
	{
		if(element.nodeName == "A") return true;
	}
	
	/*
	Adjacent Selector */
	else if(hint == "+")
	{
		context = context.nextSibling;
		while(context)
		{
			if(context == element) return true;
			context = context.nextSibling;
		}
	}
	
	/*
	Attribute Selector */
	else if(hint.length > 0)
	{
		if(element.getAttribute(hint[1]))
		{
			if(hint[2] == "" && element.getAttribute(hint[1]) == hint[3]) return true;
			else if((hint[2] == "~" || hint[2] == "|") && element.getAttribute(hint[1]).indexOf(hint[3]) > -1) return true;
		}
	}
	return false;
}
getElementsBySelector = document.getElementsBySelector = function(selector)
{
	/*
		Error Checking
	*/
	if(!document.getElementsByTagName || typeof(selector) != "string") {
		return Array();
	}
	
	/*
		Local Variables
	*/
	var resultElements = new Array();
	
	/*
		Split the Selectors
	*/
	var selectors = selector.split(",");
	for(var i=0; i<selectors.length; i++)
	{
		var selector = selectors[i].replace(/^\s+/,'').replace(/\s+$/,'');
		
		/*
			Get the Tokens
		*/
		var tokens = selector.split(" ");
		var tokenContext = new Array(this);
		var nextTokenHint = "";
		
		/*
		Loop Through the Tokens */
		for(var j=0; j<tokens.length; j++)
		{
			var token = tokens[j].replace(/^\s+/,'').replace(/\s+$/,'');
			
			/*
			CSS3 Selectors: */
			if(token.indexOf(">") > -1)
			{
				nextTokenHint = ">";
				continue;
			}
			else if(token.indexOf(":first-child") > -1)
			{
				nextTokenHint = "first-child";
				token = token.replace(/:first-child/g, "");
			}
			else if(token.indexOf(":link") > -1)
			{
				nextTokenHint = "a";
				token = token.replace(":link","");
			}
			else if(token.indexOf("+") > -1)
			{
				nextTokenHint = "+";
				continue;
			}
			else if (token.match(/^([a-zA-Z*]+)\[([a-zA-Z]+)([~\|]?)=.([^\]"]*).\]$/))
			{
				// token.match(/^(\w*)\[(\w+)([=~\|\^\$\*]?)=?"?([^\]"]*)"?\]$/)
				parts = token.match(/^([a-zA-Z*]+)\[([a-zA-Z]+)([~\|]?)=.([^\]"]*).\]$/);
				nextTokenHint = new Array("attribute", parts[2], parts[3], parts[4]);
				token = parts[1];
			}
			
			/*
			Activity Selectors*/
			token = token.replace(":visited","").replace(":active","").replace(":hover","").replace(":focus","");
			
			/*
			ID Tokens */
			if (token.indexOf("#") > -1)
			{
				/*
				Split the Token */
				var pieces = token.split("#");
				
				/*
				Error Out Gracefully */
				if(pieces[1] == "") { return Array(); }
				
				/*
				Check for Universal Selectors */
				if(pieces[0] == "") { pieces[0] = "*"; }
				
				var foundElements = new Array();
				for(var k=0; k<tokenContext.length; k++)
				{
					if(nextTokenHint != "+")
						var element = tokenContext[k].getElementById(pieces[1]);
					else
						var element = tokenContext[k].parentNode.getElementById(pieces[1]);
					
					if(element && element.nodeName && (pieces[0] == "*" || element.nodeName.toLowerCase() == pieces[0].toLowerCase()))
					{
						if(checkToken(nextTokenHint, element, tokenContext[k]))
						{
							foundElements[foundElements.length] = element;
						}
					}
				}
				tokenContext = foundElements;
				
				continue;
			}
			
			/*
			Class Tokens */
			if (token.indexOf(".") > -1)
			{
				/*
				Split the Token */
				var pieces = token.split(".");
				
				/*
				Error Out Gracefully */
				if(pieces[1] == "") { return Array(); }
				
				/*
				Check for Universal Selectors */
				if(pieces[0] == "") { pieces[0] = "*"; }
				
				var foundElements = new Array();
				for(var k=0; k<tokenContext.length; k++)
				{
					if (pieces[0] == '*') {
						if(nextTokenHint != "+")
							var elements = getAllChildren(tokenContext[k]);
						else
							var elements = getAllChildren(tokenContext[k].parentNode);
					} else {
						if(nextTokenHint != "+")
							var elements = tokenContext[k].getElementsByTagName(pieces[0]);
						else
							var elements = tokenContext[k].parentNode.getElementsByTagName(pieces[0]);
					}
					
					for (var l=0; l<elements.length; l++)
					{
						if (elements[l].className && elements[l].className.match(new RegExp('\\b'+pieces[1]+'\\b')))
						{
							if(checkToken(nextTokenHint, elements[l], tokenContext[k]))
							{
								foundElements[foundElements.length] = elements[l];
							}
						}
					}
				}
				
				tokenContext = foundElements;
				
				continue;
			}
			
			/*
			Elements */
			var foundElements = new Array();
			for(var k=0; k<tokenContext.length; k++)
			{
				if(token == "*")
				{
					if(nextTokenHint != "+")
						var elements = getAllChildren(tokenContext[k]);
					else if(nextTokenHint == "+")
						var elements = getAllChildren(tokenContext[k].parentNode);
				}
				else
				{
					if(nextTokenHint != "+")
						var elements = tokenContext[k].getElementsByTagName(token);
					else
						var elements = tokenContext[k].parentNode.getElementsByTagName(token);
				}
				
				for(var l=0; l<elements.length; l++)
				{
					if(checkToken(nextTokenHint, elements[l], tokenContext[k]))
					{
						foundElements[foundElements.length] = elements[l];
					}
				}
			}
			
			tokenContext = foundElements;
			nextTokenHint = "";
		}
		
		resultElements = tokenContext;
	}
	
	/*
	Remove Duplicates */
	var cleanedArray = new Array();
	for(i=0;i<resultElements.length;i++)
	{
		for(j=0;j<resultElements.length;j++)
		{
			if(resultElements[i] == resultElements[j] && i!=j)
			{
				resultElements[j] = "";
			}
		}
		
		if(resultElements[i] != "")
		{
			cleanedArray[cleanedArray.length] = resultElements[i];
		}
	}
	
	/*
	Return Results */
	return cleanedArray;
}

//	=============================================
//	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.params = new Array();
	this.background = "";
	this.src = "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.params["shadowBlurX"] = value;
			this.params["shadowBlurY"] = value;
			acceptableFound = true;
		}
		if(key == "border-radius" || key == "border-width" || key == "border-alpha" || key == "shadow-blur-x" || key == "shadow-blur-y" || key == "shadow-distance")
		{
			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-distance"] = "shadowDistance";
			translation["shadow-strength"] = "shadowStrength";
			translation["shadow-hide"] = "shadowHide";
			translation["rotate"] = "rotate";
			translation["overflow"] = "overflow";
			translation["link"] = "link";
			
		this.params[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;
			}
		}
		
		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.params['srcWidth'] = width *1.13;
			this.params['srcHeight'] = height *1.13 ;
			
			/*
				Flash Vars
			*/
			var varString = "";
			for(var key in this.params){ varString += ("&"+key+'='+ this.params[key]); }
			
			/*
				Is there a link
			*/
			if((elementLink = this.withinLink(elements[i])) != false && !this.params["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*1.17)+width, (height*1.17)+height, "9", this.bgcolor);
			var so = new SWFObject(this.src, "swfir"+firController.getNextId(), width*1.13, height*1.13, "9", 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);
	}
}



