jQuery(document).ready(function(){

jQuery("#woowStart").click(function(){
      $("#woowNextBox").animate({
        width: "425px",
        height: "88px",
        top: "281px"
      }, 1500 );
});

jQuery("#woowUnroll").click(function(){
      $("#woowNextBox").animate({
        width: "425px",
        height: "159px",
        top: "347px"
    }, 1500 );
    });

jQuery("#goToNews").click(function(){
       var actualSelectionHeightSmall = $("#accordion").innerHeight();
       var actualSelectionHeightBig = actualSelectionHeightSmall + 80;


      $("#news").animate({
        height: actualSelectionHeightBig+"px",
        width: "479px",
        top: "151px",
        left: "456px"
      }, 1500 );

      $(".newsIn").animate({
        height: actualSelectionHeightSmall+"px",
        width: "459px"
      }, 900 );

});

$('#accordion').bind('accordionchange', function() {
       var actualSelectionHeightSmall = $("#accordion").innerHeight();
       var actualSelectionHeightBig = actualSelectionHeightSmall + 80;

       $(".newsIn").animate({
         height: actualSelectionHeightSmall+"px"
       }, 100);

       $("#news").animate({
         height: actualSelectionHeightBig+"px"
       },100);

   }
);

$("#news").draggable();

jQuery("#hideNews").click(function(){
      $("#news").animate({
        height: "50px",
        width: "425px",
        top: "722px",
        left: "8px",
        color: "#B7E6FB"
      }, 1500 );

     $(".newsIn").animate({
        height: "0px",
        width: "0px"
      }, 500 );



});





});


