pH8.Loader = Class.create({
	initialize: function(src, options) {
	
		this.options = Object.extend({
			element: $$("head")[0]
		}, options);
	
		var s = new Element('script', {
			type: "text/javascript",
			src: src
		});
		this.options.element.appendChild(s);
	}
});