jQuery.noConflict();
jQuery(document).ready(function() {
   jQuery('.date-pick').datepick({dateFormat: 'yyyy-mm-dd'});


                jQuery("#nights_5").click(function() {
                    jQuery("#specials_box_7nights").fadeOut('fast');
                    jQuery("#specials_box_5nights").toggle();
                    window.location = "#info";
                });
                jQuery("#nights_7").click(function() {
                    jQuery("#specials_box_5nights").fadeOut('fast');
                    jQuery("#specials_box_7nights").toggle();
                    window.location = "#info";
                });
                jQuery(".price_btn").click(function() {
                    var name = jQuery(this).attr('id');
                    jQuery("#"+name+"_copy").toggle('fast');
                });
                
                var hideShow = jQuery.cookie('hideShow');

            if (hideShow=="hide") {
              jQuery("#cta_footer").hide();  
            } else {
                jQuery('#cta_footer').slideUp(4000).delay(7000).fadeIn(400);
            }


            jQuery('#close').click(function(){
                jQuery("#cta_footer").hide();
                jQuery.cookie("hideShow","hide",{expires:1});
                return false;
            });

	jQuery('#body').css({overflow:'auto'});
 });
