/*
 * jQuery custom scripts for Reverb
 * http://www.reverb123.com/
 *
 * Copyright (c) 2010
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2010-05-18 (Tue, 18 May 2010)
 * Revision: 1
 */





/* Custom functions
------------------------------------------------- */

/* -------------------------------------------------
                             end custom functions */





/* UI Candy
------------------------------------------------- */
$(document).ready(function(){
	
	$("#Menu ul li").hover(
		function() {$(this).addClass("hover");},
		function() {$(this).removeClass("hover");}
	);
	
	$(":first-child").addClass("first-child");
	$(":last-child").addClass("last-child");
	
	$(".Breadcrumb ul:first-child").not(":only-child").addClass("superfluous");
});
/* -------------------------------------------------
                                     end UI Candy */

