$(document).ready(function() {

    var prettyphoto_options = {
        showTitle: true, /* true/false */
        allowresize: true, /* true/false */
        counter_separator_label: '/', /* The separator for the gallery counter 1 "of" 2 */
        theme: 'light_rounded' /* light_rounded / dark_rounded / light_square / dark_square */
    };

   $("a[href*='.gif']").each(function() { 
	$(this).prettyPhoto(prettyphoto_options);
   });

   $("a[href*='.gif']").click(function(event){
	event.preventDefault();
   }); 
   $("a[href*='.jpg']").each(function() { 
	$(this).prettyPhoto(prettyphoto_options);
   });

   $("a[href*='.jpg']").click(function(event){
	event.preventDefault();
   }); 
   $("a[href*='.png']").each(function() { 
	$(this).prettyPhoto(prettyphoto_options);
   });

   $("a[href*='.png']").click(function(event){
	event.preventDefault();
   }); 
});

