/*
Replacing OL LI numbers with graphic symbols in jQuery
http://www.hiddenfield.com/2008/11/27/replacing-ol-li-numbers-with-graphic-symbols-in-jquery/
*/

$(document).ready(function(){

	$('ol.shortChecklist li').each(function(i){
		$(this).css(
			{ "list-style":"none", "background":"url(/mura/global/images/symbols/checklist-"+(i+1)+".gif) no-repeat 0 1px", "padding-left":"40px", "padding-bottom":"20px"}
			/*{ "list-style":"none", "padding-left":"40px", "padding-bottom":"20px", "list-style-image": "url(/mura/global/images/symbols/checklist-"+(i+1)+".gif)" }*/
		);
	 });

	 $('ol.shortChecklistTwo li').each(function(i){
		$(this).css(
			{ "list-style":"none", "background":"url(/mura/global/images/symbols/checklist-"+(i+1)+".gif) no-repeat 0 1px", "padding-left":"40px", "padding-bottom":"20px"}
		);
	 });
	
	 $('ol.shortChecklistThree li').each(function(i){
		$(this).css(
			{ "list-style":"none", "background":"url(/mura/global/images/symbols/checklist-"+(i+1)+".gif) no-repeat 0 1px", "padding-left":"40px", "padding-bottom":"20px"}
		);
	 });
	 
	 $('ol.shortChecklistFour li').each(function(i){
		$(this).css(
			{ "list-style":"none", "background":"url(/mura/global/images/symbols/checklist-"+(i+1)+".gif) no-repeat 0 1px", "padding-left":"40px", "padding-bottom":"20px"}
		);
	 }); 
	 $('ol.shortChecklistFive li').each(function(i){
		$(this).css(
			{ "list-style":"none", "background":"url(/mura/global/images/symbols/checklist-"+(i+1)+".gif) no-repeat 0 1px", "padding-left":"40px", "padding-bottom":"20px"}
		);
	 });	 
	 
 });
