// JavaScript Document

// GOMU GOMU no... BOBO SCRIPT!!!

$().ready(function(){
	$.preloadImages('img/nav_bg_active.png');
	$('#folder_tabs a').click(function(){
		$('#folder_tabs li').removeClass('on');
		$('#folder_tabs li.'+$(this).attr('rel')).addClass('on');
		$('#tab0,#tab1,#tab2,#tab3,#tab4,#tab5').hide();
		$('#'+$(this).attr('rel')).show();
		return false;
	});
});

jQuery.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  {
    jQuery("<img>").attr("src", arguments[i]);
  }
}
/*
function folder(id) {
	document.getElementById('folder_tabs').className = id;
	for (i=0; i<3; i++) {
		document.getElementById('tab'+i).className = "kill";
	}
	document.getElementById('tab'+id).className = "body";
	return false;
}
*/

function dofocus(id,title) {
	f = document.getElementById(id);
	if (f.value == title) {
		f.value = '';
	}
}

function doblur(id,title) {
	f = document.getElementById(id);
	if (f.value == '') {
		f.value = title;
		f.style.backgroundColor = '#333';
		f.style.color = '#ccc';
	}
	else {
		f.style.backgroundColor = '#fff';
		f.style.color = '#333';
	}
}
