$(document).ready(function () {	
	
	// Category Dropdown 
	
	$('#category ul li').hover( // When hovering over the heading
		function () {
			//show its submenu
			$('ul', this).stop(true, true).slideDown(100);

		}, 
		function () {
			//hide its submenu on hover out
			$('ul', this).stop(true, true).slideUp(100);		
		}
	);
	
	// Add a class to every other comment
	
	$('ol#commentlist li:odd').addClass('comment-odd');
	
});

