﻿/**
*   Omniture Link Tracking
*
*   Usage:
*       $('#linkName').click(function() {
*           var s = s_gi(s_account);
*           var event = 'event_name';
*           s.tl(this, "o", event);
*       });
*
*       Where '#linkName' is the class/id of the link and the 'event_name' is the name that appears in the report
**/

$(document).ready(function() {
    $('#twitter').click(function() {
        var s = s_gi(s_account);
        var event = 'holding_twitter';
        s.tl(this, "o", event);
    });
    $('#facebook').click(function() {
        var s = s_gi(s_account);
        var event = 'holding_facebook';
        s.tl(this, "o", event);
    });
});
