/* Author: 

*/
$(document).ready(function() {
	$("div#container ol li:not(:first)").hover(function(){
		$(this).addClass('hover');
	},function(){
		$(this).removeClass('hover');
	});
});























