/* Author: 

*/

$(document).ready(function() {
	
	$(function(){
    $("#slides").slides({
	play: 5000,
	pause: 2500,
	slideSpeed: 1000	
	});
  });
	/*
	 * mod_gallery
	 */
	$("div#image_gallery a").fancybox({
		'titlePosition'	: 'over'
	});
	
	$('.safemailto').each(function(){
		email = $(this).html();
		email = email.replace(/\[at\]/gi,'@');
		email = email.replace(/\[dot\]/gi, '.');
		$(this).replaceWith('<a href="mailto:' + email + '">'+ email +'<a/>');
	});
});


