jQuery.noConflict();

jQuery(document).ready(function() {

	jQuery('ul li:last-child').each(function() {

		jQuery(this).css('background-image', 'none');

	});

});

