/*******************************************************************
 * MetaData Conrol Module				       *
 * Copyright © 2010 All Rights Reserved.     *
 * Programmer: Codin Pangell / PrivateParty@gmail.com		       *
 *                                                                 *
 * 													               *
 *******************************************************************
/                                              */

var MetaController = function(){}
MetaController.prototype.init=function(pg){
	$.ajax({ type: "POST",
		url: 'json_interface.php?action=metadata&page='+pg,
		dataType: "json",
		success: function(obj){
			$.each(obj.data,function(i,item){
				document.title=item.titletag;
				$('meta[name=description]').attr("content",MetaControl.cleanString(item.description));
				$('meta[name=keywords]').attr("content",MetaControl.cleanString(item.keywords));
			});			
		}
	});
}
MetaController.prototype.cleanString=function(str){
	if (str==undefined)	return "";
	str=str.split("[lbr]").join("<br />");
	str=str.split("[amp]").join("&");
	str=str.split("[ques]").join("?");
	str=str.split("[eql]").join("=");
	str=str.split("[pnd]").join("#");
	str=str.split("[apos]").join("'");
	str=str.split("[dpos]").join('"');
	return str;
}
var MetaControl = new MetaController();

