jQuery(window).load(function() {
	jQuery("#content, #header, #footer").fadeIn("slow");

 // Slide the Follow navigation
    jQuery("#follow-link").click(function (e) {
        jQuery("#follow").slideToggle("slow");
        e.preventDefault()
    });
  
  
  // Animate some of the links  
jQuery('.entry-title a, div.post-entry img.thumb, div.footer-primary div.dribbble a img, ul.creattica_items li a, div.secondary-content.sidebar #search-widget input[type=submit],div.secondary-content.sidebar div.flickr_badge_image a')
    .hover(function() {
      jQuery(this).stop().animate({ opacity: 0.7 }, 'fast');
    }, function() {
      jQuery(this).stop().animate({ opacity: 1 }, 'fast');
    });


jQuery('div.secondary-content.sidebar #search-widget input[type=submit]')
    .hover(function() {
      jQuery(this).stop().animate({ opacity: 0.9 }, 'fast');
    }, function() {
      jQuery(this).stop().animate({ opacity: 1 }, 'fast');
    });


});




