$(document).ready(function(){

    $(".product_list_type.paginated").click(function(){
       $.cookie('page_view_type', null, {expires: -1, path: '/'});
       $.cookie('page_view_type', 'paginated', {path: '/'}); 
    });

});

