jQuery(function($) {
  $("a[rel^='prettyPhoto']").prettyPhoto({
    allow_resize: false,
    show_title: false,
    ie6_fallback: true
  });

  $('.gallery-item a').click(function(event){
    event.preventDefault;
    _gaq.push(['_trackPageview', this.href]);

    $.get(this.href, function(data) {
      $.prettyPhoto.open(images);
    }, 'script');
    return false;
  });
});

