$j(document).ready(function() {
	$j("a.zoom").fancybox({
		'zoomSpeedIn':500,
		'zoomSpeedOut':500,
		'overlayOpacity':0.5,
		'imageScale':true,
		'padding':5
	});
	$j('#s_matches').change(function(){
		window.location=Webroot+'photos/by_match/'+$j('#s_matches option:selected').val();
	});
	$j('#d_matches').change(function(){
		window.location=Webroot+'photos/by_match/'+$j('#d_matches option:selected').val();
	});
	$j('#events').change(function(){
		window.location=Webroot+'photos/by_event/'+$j('#events option:selected').val();
	});
});