$(function() {

	$("#search input").focus( function() {
		if ($(this).val()=="SEARCH") {$(this).val("");}
	});
	
	$("#search input").blur( function() {
		if ($(this).val()=="") {$(this).val("SEARCH");}
	});

	$('#media ul') 
	.before('<div id="nav-media">') 
	.cycle({ 
		fx:     'fade', 
		speed:  '1100', 
		timeout: 4000, 
		pager:  '#nav-media' 
	});
	
	
	lastLetter = "";

  $("#publist li, #peoplelist li").each( function() {
    var lname = $(this).attr("class");
    var letter = lname.substr(0,1);
    if (letter!=lastLetter) {
      $(this).before("<h4>" + letter + "</h4>");
      lastLetter = letter;
    }
  });
  
});
