
$(document).ready(function(){
   
    
  if ( $("#page #content #categoryItems .categoryItem").length > 0  ) 
  {
    
    $("#page #content #categoryItems .categoryItem").mouseover(
      function () {
        $(this).css("background", "#efeeee");
      }
    );
    
    $("#page #content #categoryItems .categoryItem").mouseout (
      function () {
        $(this).css("background", "#fff");
      }
    );
    
    
  }
  
    
    
  if ( $("#peopleSide li").length > 0  ) 
  {

    $("#peopleSide li").click(
    function () {       
	    
      var text = $(this).text();
      
	    if (text.trim() == "*")
	    {
		    $(this).prev("li").toggleClass("full");
		    $(this).prev("li").toggleClass("partial");
		        
		    $(this).toggleClass("open");
		    $(this).toggleClass("collapse");
	    
	    }
      
      return false; 
        
    }
    );
    
    
  }    
    
    

});

String.prototype.trim = function() {
  return this.replace(/^\s+|\s+$/g,"");
}

