$(document).ready(function(){
 
 $('a.fancybox').fancybox({'frameWidth':550,'frameHeight':550,'hideOnContentClick':false});
 
 $('#tree a.drop_link').bind('click', function(event) {
//  $('.apple',this).hide("drop", { direction: "down" }, 1700); 
  $('.apple',this).animate({marginTop: "350px",height:"20px"},  1700); 
  $('.apple img',this).animate({height:"20px"},  1700); 


  next_page="window.location=\""+$(this).attr("href")+"\";";
  setTimeout(next_page,1500);
  return false;
 });

 $('#smallMenu a.drop_link').bind('click', function(event) {
   $('.apple',this).animate({marginTop: "350px",height:"20px"},  1700); 
   $('.apple img',this).animate({height:"20px"},  1700); 
  next_page="window.location=\""+$(this).attr("href")+"\";";
  setTimeout(next_page,1600);
  return false;
 });

 
});
