// JavaScript Document

		 $(document).ready(function(){	
		   $('a.email_link').nospam({
				replaceText: true,
				filterLevel: 'low'
			});  
		   		   
			
			$('a.more_image_link').live('click',function() {	
				var obj = $(this).attr('href');
				var more_images_box = $(this).parent();
				$.get(obj, function(data){more_images_box.html(data); CB_Init(); } );			 
				return false;
			});

		 });
