jQuery(document).ready(function () {
        
     	/*-----------Index jquery-------------*/
        jQuery("#col_one_front a").hide();
        jQuery("#col_two_front a").hide();
        jQuery("#col_three_front a").hide();
        jQuery("#col_one_front a").fadeIn(2000);
        jQuery("#col_two_front a").fadeIn(2000);
        jQuery("#col_three_front a").fadeIn(2000);
        
       
        /*-----------Places jquery------------*/
        jQuery("#wazee_union a").hide();
        jQuery("#walnut a").hide();
        jQuery("#lawrence a").hide();
        jQuery("#wazee_union a").fadeIn(1000);
        jQuery("#walnut a").fadeIn(2000);
        jQuery("#lawrence a").fadeIn(3000);

        
   });

