var Application = {
		
		seoPanel : true,
		
		init : function() {
			$("#seo-panel .read-more").click(this.toggleSeoPanel);
			
			this.toggleSeoPanel();
		},

		toggleSeoPanel : function() {
			Application.seoPanel  = !Application.seoPanel;
			
			if(Application.seoPanel == false ) {
				$("#seo-panel .short").show();
				$("#seo-panel .long").hide();
			} else {
				$("#seo-panel .short").hide();
				$("#seo-panel .long").show();
			}
		}
};

$(document).ready(function(){
	Application.init();
});



