// JavaScript Document

		 $(document).ready(function(){	
		   $('a.email').nospam({
				replaceText: true,
				filterLevel: 'low'
			});  
		   
		   $('a.next_link').click(function(){	
				var pos = parseInt($('.big_box').css('left'))  ;
				$('.big_box').animate({ left: (pos-580) }, 'slow');
				return false;
		   });
		   
		   $('a.prev_link').click(function(){	
				var pos = parseInt($('.big_box').css('left'))  ;
				$('.big_box').animate({ left: (pos+580) }, 'slow');
				return false;
		   });
		   
		 });
		 
		 
		 //$(document).ready(function(){
		//	$("a[rel^='prettyPhoto']").prettyPhoto();
		//	});
		 
