$(function(){
	if($('#main_photo').length){
		preload_images();
		enable_mouseover();
	}
	$('h1').css('cursor', 'pointer').click(function(){
		document.location.href = '/';
	});
});

function preload_images(){
	$('#thumb_list img').each(function(){
		$img = $('<img>').attr('src', $(this).attr('src').replace('-150x150', ''));
		$img.hide().appendTo('body'); 
	});
}

function enable_mouseover(){
	$('#thumb_list img').bind('mouseover', function(){
		$('#main_photo img').attr('src', $(this).attr('src').replace('-150x150', ''));
	});
	
	$('#thumb_list a').bind('click', function(){
		return false;
	});
}

