$(document).ready(function() {
	$('div#sidebar ul li').hover(function() {
		$(this).addClass('hover');
	},
	function() {
		$(this).removeClass('hover');
	});
	$('div#sidebar ul li').each(function() { 
		$(this).bind('click', function() {
			document.location = $(this).find('a').attr('href');
		}).css({cursor: 'pointer'});
	});
});