$(document).ready(function(){
    $(document).bind("contextmenu",function(e){
        alert('Right click has been disabled to protect the interests of our young patients');
        return false;
    });

    $("ul.sf-menu").supersubs({
        minWidth:    12,                                // minimum width of sub-menus in em units
        maxWidth:    27,                                // maximum width of sub-menus in em units
        extraWidth:  1                                  // extra width can ensure lines don't sometimes turn over
    }).superfish({
        delay:       400,                               // delay on mouseout
        animation:   {opacity:'show',height:'show'},    // fade-in and slide-down animation
        speed:       'fast',                            // faster animation speed
        autoArrows:  false,                             // disable generation of arrow mark-up
        dropShadows: false                              // disable drop shadows
    });
});

$(document).ready(function(){
        $(".autoclear").click(function () { 
            if($(this).attr('value') == $(this).attr('default')){
                $(this).attr('value','');
            }
        });
        
        $(".autoclear").focus (function () { 
            if($(this).attr('value') == $(this).attr('default')){
                $(this).attr('value','');
            }
        });
        
        $(".autorefill").blur(function () { 
            if($(this).attr('value') == ''){
                $(this).attr('value',$(this).attr('default'));
            }
        });
        
        $(".autoselectall").click(function () { 
           $(this).select();
        });
});

$(document).ready(function(){ initRollovers(); });

