﻿$(document).ready(function(){
    divDescription = $("#divFeaturedWineryBackGround");
    var aClose2 = $("#aClose2");
    divDescriptionText = $("#divFeaturedWineryDescription");
    maxHeight = 238;
    minHeight = 0;	
    
    $("#aDescription").click(
      function(){
        $(divDescription).animate({height: maxHeight+"px"}, { queue:false, duration:400 });
        $(divDescriptionText).animate({height: maxHeight+"px"}, { queue:false, duration:400 });
        $(aClose2).show();
        $("#aDescription").hide();
      }
    );
    
    $("#aClose, #aClose2")
    .click(
      function(){
        $(divDescription).animate({height: minHeight+"px"}, { queue:false, duration:400 });
        $(divDescriptionText).animate({height: minHeight+"px"}, { queue:false, duration:400 });
        $(aClose2).hide();
        $("#aDescription").show();
      }
    );
});
