$(function() { $('#datepicker').datepicker({ inline: true }); $('input:radio').click(function() { var theme = $(this).val(); switchStylestyle(theme); return; // return false; }); var theme = readCookie('style'); if (theme) { switchStylestyle(theme); $('input:radio').each(function() { this.checked = false; if ($(this).val() == theme) { this.checked = true; } }); } });