$(document).ready(function(){
	$('.subpage-thumb img').mouseover(function(){
		var src=$(this).parent('a').next().next().text();
		$(this).parent('a').next().next().text($(this).attr('src'));
		$(this).attr('src', src);		
	});
	$('.subpage-thumb img').mouseout(function(){
		var src=$(this).parent('a').next().next().text();
		$(this).parent('a').next().next().text($(this).attr('src'));
		$(this).attr('src', src);		
	});
	$('.group-pics img.normal').mouseover(function(){
		var src=$(this).attr('src');
		$(this).attr('src', $(this).next().attr('src'));
		$(this).next().attr('src', src);
	});
	$('.group-pics img.normal').mouseout(function(){
		var src=$(this).attr('src');
		$(this).attr('src', $(this).next().attr('src'));
		$(this).next().attr('src', src);
	});
});
