$(document).ready(function(){
	/*$('.jcat li a').bind('click', function() {
		var targ = $(this).attr('href');
		
		// show those already hidden
		$('dl.summary').show();
		
		// now filter all those dl not
		$('dl.summary[title!="' + targ + '"]').hide();		
		return false;
	});*/
	
	// change the categories and filter what the user can see
	$('.jcat').change(function() {
		var targ = $(this).val();
		
		// show those already hidden
		$('dl.summary').show();
		
		// now filter all those dl not
		if(targ != 'all') { $('dl.summary[title!="' + targ + '"]').hide(); }	
		return false;
	});
		
	// fancy box
	/// fancybox
	$('.thumb a').fancybox({
	'autoDimensions'	: true,
	'transitionIn'		: 'none',
	'transitionOut'		: 'none'
	});
	
	
});
