/* striping plugin by Joel Birch */
jQuery.fn.stripeAnything = function(){
	
	return this.each(function(){
		var children = $(this).find('>*');
		children.filter(':nth-child(odd)').addClass('odd');
		children.filter(':nth-child(even)').addClass('even');
	});

};
