﻿// JScript File
/* Main DOM Setup Routines Using JQuery 1.2.6 */

 $(document).ready(function() {
    //DOM is Ready.
     var shad_y = 1;
     if($.browser.mozilla){
     shad_y = -16;
     }
    $(".rcol h3, .lcol h3").dropShadow({
        left: .0,
        top: shad_y,
        blur: 1,
        opacity: 0.1}
     );


 
 });


