$(document).ready(function() {
	$('.ringtone a img.get-over').hide();
	
	$('.ringtone a').hover(function(e) {
		$(this).children('img.get-on').hide();
		$(this).children('img.get-over').show();
	},function() {
		$(this).children('img.get-on').show();
		$(this).children('img.get-over').hide();
	});
});
