var Contact = function(){
	var arrContent,
		html,
		footerHtml;

	this.init = function( content ) {
		arrContent = content;
		footerHtml = '';
		html  = '';
	},

	this.generateArrayFromJson = function(data){
		var content = {
			
			text: data.content.text
		};
						
		this.init( content );	 
		this.generateContentHtml();
	},

	this.changeContent = function(a){
		
	},

	this.generateContentHtml = function(){		

	},

	this.resize = function(){
		$('#content').animate({width:'100%'});
	},

	this.getContentHtml = function(){
		return html;	
	},

	this.getFooterHtml = function(){
		return footerHtml;	
	},

	this.getArrFooter = function(){
		return arrFooters;
	},

	this.getJavascript = function(){	    
		$('#page-wrap').css({'background-size': '100% auto'});
	},

	this.getArrContent = function(){
		return arrContent;
	}		

	return this;
}
