$(document).ready(function(){
 
   $(".tripButton").click(function(){
     var value = $(this).attr('id');
     
     if($.cookie('basket')!= null){
       value = value +'.'+$.cookie('basket');
     }
 
     $.cookie('basket', value, { expires: 7, path: '/' });
     window.location.href=window.location.href;
   });
   
 
 
 });
