

/*------------kids_only.js----------*/

reg.postSetup(function() {
	// focus on first form field
	if ($("#form-idea").length > 0) {
		focusFirst('form-idea');
	}
	
	// tabs
	var firstTab = this.id;
	$('.tabs-pad div').each(function(e) {
		if (this.id) {
			firstTab = (firstTab) ? firstTab : this.id;
			$('#' + this.id).addClass('hidden');
		}
	});
	toggleTabs(firstTab);
	
	// add audio to tabs
	$('div.tabs ul.tabs-kidsonly li a').click(function() {
		flash.soundfx();
	});
});

function toggleTabs(id) {
	$('.tabs-pad div').each(function(e) {
		if (this.id == id) {
			$('#' + this.id).removeClass('hidden');
			$('#tabs-kidsonly-' + this.id).addClass('on');
		} else {
			$('#' + this.id).addClass('hidden');
			$('#tabs-kidsonly-' + this.id).removeClass('on');
		}
	});
	return false;
}