// -------------------------------- //
// Coloured numbered bullets.       //
// Used on recipes, for the method.	//
// -------------------------------- //
// Author: rachel@dollypower.com    //
// -------------------------------- //

// Document ready
jQuery(document).ready(function() {		
	
	// Find <ol> and add class so it 
	// can be styled by the CSS.
	jQuery(".recipe-card ol").addClass("colour");
	
	// Find <li> and wrap in a <span> 
	// so they can be styled by the CSS.
	jQuery(".recipe-card ol li").wrapInner("<span></span>");
	
}); // End script
