$(document).ready(function() {
    setTimeout(function(){
        $("#placement").hover(function() {
            $("#summerPlacementExpanded").fadeIn('slow');
        },function() {
          $("#summerPlacementExpanded").fadeOut('slow');
        });
    }, 1000);
    
    $(".expand").click(function() {
        //alert(this.id);
        //alert(this.id.split("btn")[0] + " " + this.id.split("btn")[1]);
        //alert("#expand"+this.id.split("btn")[1]);
        $("#expand" + this.id.split("btn")[1]).stop('true', 'false').fadeIn();
    }).hover(function(){
        this.style.cursor = "pointer";
    }, function(){
    
    });
    $(".close").click(function() {
        //alert(this.id);
        //alert(this.id.split("btn")[0] + " " + this.id.split("btn")[1]);
        //alert("#expand"+this.id.split("btn")[1]);
        $("#expand" + this.id.split("close")[1]).stop('true', 'false').fadeOut();
    }).hover(function(){
        this.style.cursor = "pointer";
    }, function(){
    
    });

});

