﻿Spotlight = function () {

    this.categories = [];
    this.categories['baconalia'] = 'bacon447';
    this.categories['home'] = 'home132';
    this.categories['menu'] = 'menuq716';
    this.categories['about'] = 'about883';
    this.categories['location'] = 'resta405';
    this.categories['specials'] = 'opent188';
	this.categories['media'] = 'media000';

    this.getCategory = function (uri) {
        return this.categories[uri] != undefined ? this.categories[uri] : false;
    }

    this.track = function (uri) {
        var category = this.getCategory(uri)
        if (category == false) {
            category = uri;
        }

        var src = '1281772';
        var type = 'den2010';

        var axel = Math.random() + "";
        var num = axel * 1000000000000000000;
        var spotpix = new Image();
        spotpix.src = "http://ad.doubleclick.net/activity;src=" + src + ";type=" + type + ";cat=" + category + ";ord=" + num;
    }



}
