
var fatsecret = {
	variables: {
		
		rootUrl: 'http://platform.fatsecret.com/js/Default.aspx?pg=',
		
		splitter: 'fs_52f260fe43e34a1ead989d28b5d5efaa',
		key: '893ada7b24ed4522922cbc865e75a861',
		appTitle: 'My Diet',
		navOptions: 31,
		autoTemplate: true
	},
	
	setCookie: function(name, value){
		var date = new Date();
		date.setTime(date.getTime()+(10*365*24*60*60*1000));		
		document.cookie = name + '=' + encodeURIComponent(value) + ';expires=' + date.toUTCString() + ';path=/';
	},
	
	doWrite: function(url, isCss){
		var h = isCss ? '<link type="text/css" rel="stylesheet"' : '<script type="text/javascript"'; 
		h += (isCss ? ' href' : ' src') + '="' + url; 
		h += isCss ? '"/>' : '"></script>'; 
		document.write(h);
	},
	
	start: function(){
		this.doWrite('http://platform.fatsecret.com/js/static/css/all.css', true);
		
		
			this.doWrite('http://platform.fatsecret.com/js/static/css/themes/blue.css', true);
		
		
		this.doWrite('http://platform.fatsecret.com/js/static/script/final.js');
		
		
		
		
		
	}
};
fatsecret.start();

