$(document).ready(function() {
	$('#valikko div a img').each(function() {
		pos = $(this).position();
		o_img = $(this).attr('src');
		n_img = o_img.substr(0, o_img.indexOf('.')) + '_sel.png';
		$(this).after('<img style="position: absolute; left:'+ pos.left +'px; top:'+ pos.top +'px;" src="' + n_img + '" />').next().css({opacity: 0});
	});

	$('#valikko div a').hover(
		function() {
			$(this).find('img:first').stop().animate({opacity: 0}, 500 );
			$(this).find('img:last').stop().animate({opacity: 1}, 500 );
		},
		function() {
			$(this).find('img:first').stop().animate({opacity: 1}, 500 );
			$(this).find('img:last').stop().animate({opacity: 0}, 500 );
		}
	);
});
