$("#wizard li").click(function () {
console.log( $(this).index() );
});
$('ul li').eq(index).css({'background-color':'#343434'});
$(document).ready(function() {
$("#example div").click(function() {
var index = $("#example div").index(this);
$("#example_index").html("Index " + index + " was clicked");
});
});