$(function(){
	/* BEGIN IMAGE */
	$('#content a:has(img)').fancybox({
		'overlayShow': true
	,	'overlayOpacity': 0.5
	,	'zoomSpeedIn': 1000
	,	'zoomSpeedOut': 500
	,	'zoomOpacity': true
	,	'hideOnContentClick': false
	});
	/* END IMAGE */
	
	/* BEGIN COUNTERS */
	$('#counters img').css({
		'opacity': 0.5
	}).hover(function(){
		$(this).animate({
			'opacity': 1
		}, 100);
	},function(){
		$(this).animate({
			'opacity': 0.5
		}, 100);
	});
	/* END COUNTERS */
});
