

$(document).ready(function() {
	loadPrefsToggle();
	loadFormatsToggle();
});



function loadPrefsToggle() {

	$('#prefs-default input').bind('click', function() {
		$('#preferences').hide();
		//$('#preferences input').each( function() { this.checked = false; }); 
	});
	
	$('#prefs-new input').bind('click', function() {
		$('#preferences').show();
	});
}


function loadFormatsToggle() {
	$('.format-select input').bind('click', function() {
		$('#album-lists span').hide();
		var format = $(this).parent().attr('id').split('-');
		$('#album-' + format[0]).show();
	});
	
	$('#source-upload input').bind('click', function() {
		$('#file-upload').show();
		$('#tuo-album').hide();
		$('#tuo-album select').each( function() { this.selectedIndex = 0; }); 
	});
	
	$('#source-album input').bind('click', function() {
		$('#file-upload').hide();
		$('#tuo-album').show();
	});
}