
(function($) {

    $.fn.rowalt = function(options) {
		
		var settings = {
			'even' 	: 'even',
			'odd' 	: 'odd'
		};
		
		$('#' + $(this).attr('id') + ' li:nth-child(odd)').addClass(settings.odd);
		$('#' + $(this).attr('id') + ' li:nth-child(even)').addClass(settings.event);
		
	}
	
})( jQuery );
