// JQuery based hover menu
$(document).ready(function(){
	
	$('.more').click( function() { 
		var thisItem = $(this);

		// SHOW EVERY FILTER ITEM
		$(this).prev().removeClass("moreHolder");
		//$(this).prev().hide();
		
		//HIDE THE MORE BUTTOn
		$(thisItem).hide();
		return false;
	});

});