$(document).ready(function(){
	$('#container img.alt').hide();
	$('#container a.alt').hover(
		function() { 
			$(this).children('img.main').hide(); 
			$(this).children('img.alt').show();
		},
		function() {
			$(this).children('img.main').show(); 
			$(this).children('img.alt').hide();
		}
	)
});