/*****************************************************************************************************/
/*                                                                                                   */
/*                                     'TESTIMONIALS PANEL' CLASS                                    */          
/*                                                                                                   */
/*****************************************************************************************************/

function TESTIMONIAL(){
	var JSObject = this;
	this.type = "testimonials"; 
	
	this.DOMDoc; //document object from thickbox window
	
	this.close_link;
	
	this.tb_identifier;
	
	
	
	/*****************************************************************************************************/
	/*                                                                                                   */
	/*                                      FUNCTION INIT                                                */          
	/*                                                                                                   */
	/*****************************************************************************************************/
	this.init = function(){
		
		this.close_link = $('a[id="testimonial_close_btn"]',this.DOMDoc).get(0);
		
		this.initCreate();
		
		//add thickbox identifier
		JSInterface.setThickboxID(this.tb_identifier);
		JSInterface.checkThickBoxHeight = null;
		
	}
	
	
	/*****************************************************************************************************/
	/*                                                                                                   */
	/*                                  FUNCTION CREATE PANEL                                            */          
	/*                                                                                                   */
	/*****************************************************************************************************/
	this.initCreate = function(){
		
		
		/*****************************************************************************************************/
		/*                                                                                                   */
		/*                                      LINK 'CLOSE' ACTIONS                                         */          
		/*                                                                                                   */
		/*****************************************************************************************************/
		$(this.close_link).bind("click", function(){
													JSObject.DOMDoc.body.innerHTML = "";
													JSInterface.setThickboxID(JSObject.tb_identifier);
													JSInterface.removeThickboxID();
													JSInterface.closeThickbox();
												});
		
	}
	
	
	
	
}