$(document).ready(function(){
  
  if(window.location.href.indexOf("pay-monthly.php")!=-1)
  {
    _gaq.push(['_trackPageview','/handsets/'+manufacturer+'/'+handset]);
  }
  
  $(".pagination a").click(function(){
    _gaq.push(['_trackEvent', handset, "nextpage",$(this).html()]);
    });
  
  $('a[href^=/redirect]').click(function(){
    var retailer=$(this).parent().find("img").attr("alt");
    var order=$(this).parent().parent().index()+1;
    _gaq.push(['_trackEvent', handset, "clickoff",retailer,order]);
    });
  
  $('#deals-filter-form input, #deals-filter-form select').change(function()
  {
    if($(this).attr("name")=="sort")
    {
      _gaq.push(['_trackEvent', handset, "resort",$(this).val()]);
    }
    else
    {
      _gaq.push(['_trackEvent', handset, "refilter",$(this).attr("name"),$(this).val()]);
    }
  });
  
  $('img[alt="Refine search"]').click(function(){
    _gaq.push(['_trackEvent', handset, 'Refine Search']);
    });
  
  });

