$(document).ready(function() {
  
    //deleting media in act admin
    $('.delete').click(function() {
        id = $(this).attr('ref')
        $("#"+id).fadeOut();
    });

    // form validation, add validate class to any form to enable
    if($('.validate')){
        $('.validate').validate();
    }
  
    // rounded corners in IE
    //$('.box').corner();
  
  
    $("#foo0").carouFredSel({
        scroll: {
            duration        : 1000,
            pauseOnHover    : true  

        }
    });
  
});


function showOther(){
    //alert('sss');
    var school_input = $('#school');

    if(school_input){
        if(school_input.val() == 'Other..'){
            
            $('#new_school').fadeIn(500);
        }else{
            $('#new_school').fadeOut(500);
        }
    }
}


    
setInterval( "showOther()", 1000 );



var RecaptchaOptions = {
    theme : 'blackglass'
};




