﻿/*
* JScript File (relies on jQuery):
* Determine whether any links on the page are pointing towards the GasSafe forms to be tracked.
*/
var __stormJs = 'js.stormiq.com/sid2014_4.003.js';
  
$(document).ready(function() {
    // Tag all pdf downloads      
    $("a[href$='pdf']").click(function(){
        logOCSale('isconv=1|itemcount=1|itemvalue=0.00|m1=PDF Download');
    });
    // Tag report illegal work
    $("a[href*='report_business_form']").click(function(){
        logOCSale('isconv=1|itemcount=1|itemvalue=0.00|m1=Report Illegal Gas Work');
    });
    // Tag gas safety inspection
    $("a[href*='nominate_form']").click(function(){
        logOCSale('isconv=1|itemcount=1|itemvalue=0.00|m1=Free Safety Inspection');
    });
    // Tag make a complaint
    $("a[href*='gas_complaint_form']").click(function(){
        logOCSale('isconv=1|itemcount=1|itemvalue=0.00|m1=Make a Complaint');
    });
});



