function addBorder(id, total) {
	for (var x = 1; x <= total; x++) {
		$('img_'+x).removeClassName('selected_img');
	}	
	
	$(id).addClassName("selected_img");
}

function showRingtone(show) {
	if (show) {
		$('ringtone').show();
	} else {
		$('ringtone').hide();
	}

}
