﻿$(document).ready(function(){

     var findSubNavLI = $("#subNav ul  > li ");
     if (findSubNavLI.length<1) {$("#subNav").css({'display' : 'none'}) };
     
     
     // move subNav to bottom
     $('#subNav').appendTo('#content');
     
     
     //make weather link into a popup
     // $("li#pageid4575 a").attr({ onClick: "window.open('http://plantersinnsavannah.com/weather-link.htm', 'child', 'scrollbars,width=430,height=495'); return false" });
     
     //change calendar icons
     $("#checkinCalendarIcon").attr("src", "files/270/cal5.gif");
     $("#checkoutCalendarIcon").attr("src", "files/270/cal5.gif");
     
     // cycle through center CTAs
     
     $('#linkHolder').cycle({ 
         fx:     'scrollLeft', 
         timeout: 6000, 
         next:   '#next', 
         prev:   '#prev' ,
         pause:  'true'
     });
     
});