$(document).ready(function(){
   $('#speech-bubble').css('visibility', 'visible');
   $('.dropdown').css('visibility', 'visible');
   $('.speech-bubble-rocker').mouseover(function(){
     $(this).parent('#speech-bubble').effect("bounce", {times: 3, distance:10, direction: 'down'}, 400);
   });

   $('.rocker').mouseover(function(){
     $(this).parent('.box').effect("bounce", {times: 3, distance:10, direction: 'down'}, 400);
   });

   $('.rocker').click(function(){
     var hireBox = $(this).parent('#hire-box');
     var blogBox = $(this).parent('#blog-box');

     if(hireBox.html() != null)
     {
       var link = 'mailto: steve@antherllc.com?subject=I\'d like to hire you for web development work';
       document.location = link;
     }
     else if(blogBox.html() != null)
     {
       document.location = '/blog';
     }
   });

   $('#stalk-dropdown').click(function(){
     var position = $(this).css('margin-top');
     var newPosition = (position == '25px' ? '95px': '25px');
     $(this).animate({marginTop : newPosition}, 1500);
   });

});


