$.cookie('the_cookie'); 
$.cookie('the_cookie', 'the_value'); 
$.cookie('the_cookie', 'the_value', { expires: 7 });
$.cookie('the_cookie', '', { expires: -1 }); 
