
   $(document).ready(function(){
 $('.full-size a').colorbox({
current: "{current} / {total}",
   maxHeight: "100%",
   rel:"colorbox"
 });
 $('.full-size a').each(function(){
var title = $('.ad-thumbs img[longdesc=' + $(this).attr('href') + ']')
 .attr('title').replace('<br />',', ');
title += " - ";
title += $('.ad-thumbs img[longdesc=' + $(this).attr('href') + ']')
 .attr('alt').replace('<br />',', ')
$(this).attr('title', title);
 });
 $('.ad-image a').live("click",function() {
   $('.full-size a[href="' + $(this).attr("href") + '"]').click();
 return false;
     });
   });

