jQuery(function(){
	jQuery('.to_top a').click(function() {
		jQuery('html,body').animate({ scrollTop: 0 }, 500);
		return false;
	});

	jQuery('a.hover_image img').hover(
		function(){
			var src = jQuery(this).attr('src').replace('.png', '_hover.png');
			jQuery(this).attr('src', src);
		},
		function(){
			var src = jQuery(this).attr('src').replace('_hover.png', '.png');
			jQuery(this).attr('src', src);
		}		
	);
});