$(function() {
	
	$("#s").focus(function() {
		if ($("#s").val() == "Search...") $("#s").val("");
		
		$(this).parent().addClass("focus");
	}).blur(function() {
		if ($("#s").val() == "") $("#s").val("Search...");
		
		$(this).parent().removeClass("focus");
	});
	
	//$("#more-folder").hide();
	//$("#more-folder").delay(1000).slideDown(500);
});
