jQuery(document).ready(function(){
// Your code here
	jQuery('div>span.Boxtitle').each(
	function(){
	if(jQuery(this).text() == 'REFERENCE'){
		var tdiv = jQuery(this).next();
		jQuery('h5',tdiv).show()
		jQuery('h5 > a',tdiv).each(function(){
			if(jQuery(this).text()=='Sisley'){
				jQuery(this).parent().hide();
				jQuery(this).parent().nextAll().hide();
	}
	});
	}
	}
	)
});
