var Gallery = {

  init:function() {
    jQuery('.imagelist li a').click(function(e) {
       var path = jQuery(this).attr('rel');
       e.preventDefault();
     
       var img = new Image();
       img.src = path;
       
       jQuery('.fullimage').find('img').eq(0).attr('src', img.src);
       
       //.src = img.src;
       
    });
  }
};

jQuery(document).ready(function () {
    Gallery.init(); 
});

