
    function prefixWithContext(object, attribute) {
    	var value = object[attribute];
    	value = value.replace(/http:\/\/[^\/]*/g, '');
    	value = '' + value; 
    	object[attribute] = value;
    	var g = 7; 
    }
    
    function getContextPrefix()
    {
        return '';
    }