//jQuery scripts

jQuery.noConflict();

jQuery(document).ready(function(){	
   jQuery('#photo_list img').each(function(){
   	var largeImagePath = jQuery(this).attr('src').replace('.jpg', '_lrg.jpg');
   	var imageTitle = jQuery(this).attr('title');

   	jQuery(this).attr('onclick','new Moognify(this,{duration:500, source:"' + largeImagePath + '", text:"' + imageTitle + '"})');
   });
});//closes ready function
