/**
 * @author				Chris Marks cmarks@psykoticartworx.com
 * @classDescription	
 * @copyright			Chris Marks 2007
 * @constructor			
 * @param				
 * @version				
 * @return				
 * @see					
 */
function ObjectName()
{
	/* DO NOT DELETE */
	if (!document.getElementsByTagName && !document.getElementById && !document.createTextNode) return false;
	/*=====================================================*/
	// Variables
	var v = '';
	/*=====================================================*/
	// Attach Functions to this Object to create public methods
	this.inti = inti;
	this.set = set;
	this.get = get;
	/*=====================================================*/
	// Functions like a constructor
	function main()
	{
		
	}
	/*=====================================================*/
	// Assign Event calls to the next and back button
	
	// Run the animation
	function inti()
	{
		main();
	}
	/*=====================================================*/
	// Set & Get Methods			
	// 
	function set(v)
	{
		v = Number(v);
	}
	function get()
	{
		return v;
	}
}