$(document).ready(function(){
	  $("a#moreinfo_link").click(function(){
        contentObj.update();
    });
});
var contentObj = {
        sourceId: "#top_content > div",
        desti: {
            id: "#content",
            hasdata: false,
            show: false
        },
        handlerId:"#moreinfo_link",
        update:function(){
            if(!this.desti.hasdata){
                $(this.sourceId).clone().appendTo(this.desti.id).css("display","block");
                this.desti.hasdata=true;   
            }else{
                $(this.desti.id).toggle(!this.desti.show);
            }
            $(this.handlerId).html(this.desti.show?"More Information":"Hide Information");
            this.desti.show = !this.desti.show;
			if(this.desti.show){
				$(this.desti.id).show();
			}else{
				$(this.desti.id).hide();
			}
			
        }
};