//this is very specific to _banners.phtml partial
$(document).ready(function(){
    $("#buttonimage","#box").click(function(){
        var selects = $('#important').val();
        var categories = $('#category').val();
        var radios = $('input[name=important]:checked').val();
        var hiddens= $('input[type=hidden]');
        var redirect = false;
        if (hiddens.length>0){
            hiddens.each(function(index,el){
                if ($(el).val() == 'default'){
                    redirect = true; 
                }
            });
        }

        if (selects || radios || redirect || categories ){
            return true;
        }
        else{
            alert ('Please choose an option.');
            return false;
        }
    });
});

