/*------------------------------------------------------------------------------------------------------------------------------
	iframe_object.js - evan 
------------------------------------------------------------------------------------------------------------------------------*/

	var iframeObject = Class.create();
	
	iframeObject._id = 'image_wrapper';	
	iframeObject._srcFolder = 'lib/iframes/';
	iframeObject._object = false;

	iframeObject.init = function () 
	{
		iframeObject._object = $(iframeObject._id);
	}

	iframeObject.loadIframe = function (url) 
	{
		try {		  
			iframeObject._object.src = iframeObject._srcFolder + url;
		 } 
		 catch (err) {
			alert("cannot load "+url+" into "+ iframeObject._id) ;
		  }
	}
