$(document).ready(function() {
	$('ul.filter a').click(function() {
		$('#galleryList li').removeClass('clearBoth');

		$(this).css('outline','none');
		$('ul.filter .current').removeClass('current');
		$(this).parent().addClass('current');
		var filterVal = $(this).text().toLowerCase().replace(' ','-');

		if(filterVal == 'all') {
			$('#galleryList li.main.hidden').addClass('active').show(500).removeClass('hidden');
			$('#galleryList li.noShow').hide(500);
		} else {

			$('#galleryList li').each(function() {
				if($(this).hasClass(filterVal)) {
					$(this).addClass('active').show(500).removeClass('hidden');
				} else {
					$(this).removeClass('active').hide(500).addClass('hidden');
				}
			});
		}
		$('#galleryList li').addClass('killClear');
		$('#galleryList li.active').each(function(i) {
			if (i % 4 == 0 && i != 0) {
				$(this).addClass('clearBoth');
			}
		});		

		return false;
	});
});
