// JavaScript Document

function change_image(url, title) {
  
  var len = url.length-4;
   
  $('big_image').fade({ duration: 0.5, afterFinish: function(){
       // Change the image
       $('big_image').src = url.substring(0,len) + "-300x300.jpg";;
       $('big_image_href').href = url;
       $('big_image_href').title = title;
        // Fade the image back in
       $('big_image').appear({duration: 0.5}); 
      }
   });
   
}

function d_effect(id) {
  $(id).fade({ from: 1.0, to: 0.7, duration: 0.4 });
}

function d_effect_out(id) {
  $(id).appear({ from: 0.7, to: 1, duration: 0.4 });
}

