
function fancyLoaded()
 {
   if (curPageType =='PhotoGallerySection'){
   $.get(
         $('#fancy_img').attr('src')+'?stat=true',
         {
          type: "stat-request"
         },
         null
        );
   }
   
   return true;
 }


 function StartUp() {
  //alert($("a[rel^='fancybox']").length);
  if (curPageType =='PhotoGallerySection')
      $("a[class^='fancybox'], a[rel^='fancybox']").prettyPhoto({callback: function(){fancyLoaded();}});
  else
      $("a[class^='fancybox'], a[rel^='fancybox']").prettyPhoto();
 }
 

$(document).ready(function(){StartUp();});

function fancyActivation()
{}
