jQuery.noConflict();

(function($) {
$(document).ready(function(){

//alert("artistcv.js");

var current_year;

$('ul.resume_list').each(function(index) {
	
	current_year = 0;
	
	$(this).find('li.resume_year span').each(function(index) {

	
	if ($(this).text() == current_year && current_year != "" ) {
			  $(this).css("display","none");
			 
			} else {
			}

	   current_year = $(this).text();
	   
	  });

});

});
		  })(jQuery)
