// when button is clicked, set the fav station
jQuery(document).ready(function ($) {
$('.fav').click(function(){
fav = 'WPET';
Cookies.set('station', fav, { expires: 365 });
$('.fav').hide();
$('.unfav').show();
location.reload();
});
});
jQuery(document).ready(function ($) {
$('.unfav').click(function(){
Cookies.remove('station', { expires: 365 });
$('.unfav').hide();
$('.fav').show();
location.reload();
});
});
jQuery(document).ready(function ($) {
myfav = Cookies.get('station');
if(myfav == 'WPET') {
$('.unfav').show();
$('.fav').hide();
} else {
$('.unfav').hide();
$('.fav').show();
}
});