$(function() {
    $('div[rel]').css({cursor:'pointer'})
        .click(function() {
            window.location.href = $(this).attr('rel');
        });

    $("input[type='checkbox'], input[type='radio']").css({width:'auto', height:'auto', marginRight:'7px', marginTop:'1px'});
});

