 function go_to(page){
          switch(page){
                case "TA":
                     $("#halt-ball").hide("puff", {}, 700);
                     setTimeout("window.location.href='http://www.terra-animals.de/index.php';",1000);
                break;
                case "DI":
                     $("#un-ball").hide("explode", 1000);
                break;
                case "SH":
                     $("#shop-ball").hide("explode", 1000);
                     setTimeout("window.location.href='http://webmall.terra-animals.com';",1000);
                break;
                case "DE":
                     $("#my-ball").hide("puff", {}, 700);
                     setTimeout("window.location.href='http://design.terra-animals.com';",1000);
                break;
          }
 }


function ball(id,x,y){
    var posIt = {'left': x+'px','top': y+'px',opacity:'0',display:'block',width:"31px",height:"31px"}

    $("#"+id+"-ball").css(posIt);
    $("#"+id+"-ball p").css({opacity:'0'});
    
    $("#"+id+"-ball").animate({opacity: '1',width:"310px",height:"310px"}, {duration: 2000,easing: 'easeOutBounce'});
    $("#"+id+"-ball p").animate({opacity: '1'},1000);
    $("#"+id+"-ball").draggable();
    $("#"+id+"-ball").css({cursor:"move"});
}




