this.init = function(){	
	/* CONFIG */
		
	/* END CONFIG */

    this.href = "images/bg_glow.png";
    this.w = " width=1154";
    this.h = " height=479";
    //		$("body div#main_chweb_content").append("<p id='preview2'><iframe " + this.w + " " + this.h + " src='"+ this.href +"' scrolling='no' style='overflow: hidden;' frameborder='0' border='0' cellspacing='0' style='overflow: hidden;border-style: none;width: 550px; height: 100px;' scrolling='0' marginwidth='0' marginheight='0' vspace='0' hspace='0'></iframe></p>");								 
    //		$("body div#main_chweb_content").append("<div id='glow'><iframe " + this.w + " " + this.h + " src='"+ this.href +"' scrolling='no' style='overflow: hidden;' frameborder='0' border='0' cellspacing='0' style='overflow: hidden;border-style: none;width: 550px; height: 100px;' scrolling='0' marginwidth='0' marginheight='0' vspace='0' hspace='0'></iframe></div>");								 
    
		$("#glow")
			.css("top", -400 + "px")
			.css("left", 10 + "px")		    
   		        .fadeIn(100);

    $("#preview2").remove();
};

// starting the script on page load
$(document).ready(function(){

  init();


  $('#readmore').click(function() {
    $("#preview2").remove();
    $.ajax({
      url : "?q=about_us",
      success : function (data) {
        $("#main_content").html(data);
      } 
    });
  });

});
