        $(document).ready(function() {
	$("#featureditems li").mouseover(function(){
		$(this).css({ 'background-color': "#716baa",'cursor': "pointer" });
	});
	$("#featureditems li").mouseout(function(){
		$(this).css({ 'background-color': "#3A2F54",'cursor': "default" });
	});
});

    
