If you want to use image as a bullets. I would suggest you to use background for li otherwise it may gives you some problem with positioning for cross browser.
You can use something like below
ul{
list-style:none;
}
ul li{
padding-left:20px /* assuming your image is 16px */
background:url(bullet-image-path)no-repeat left top /* if position top not align properly than you can define some pixel like 4px or so
}