$(document).ready(init);

function init(){
	// global

	
	//$('h1').click(function(){window.location.href = 'index.shtml'});

	$('.thumbs>img').hover (
		function() {
			$(this).fadeTo(200, 0.7);
		},
		function() { 
			$(this).fadeTo(200, 1.0);
		}
	);

	$(".thumbs>img").click(function() {loadPicture(this)});
	
	$(".pic>img").hide();
	$("#pic01").show();


}


function defeatSpam3000(){
	$('.nospam').each(function(){
		var emailText    = $(this).text();
		var emailAddress = emailText.replace(/ \[at\] /,'@');
		$(this).replaceWith($.create('a',{'class':'maillink','href':'mailto:'+emailAddress},emailAddress));
	});
}

function loadPicture(pic){
	var selectedPic = $(pic).attr('id').replace(/thumb/,'pic');
	
	$('.pic>img').fadeOut(600);
	$('#'+selectedPic).fadeIn(600);
}

