jQuery(function( $ )
{
	
	$( '#galleria' ).find( 'img' ).live( 'click', function()
	{
		if( !$( this ).parent().hasClass( 'panel' ) )
			return;
		
		var src = $( this ).attr( 'src' );
		
		$.fn.colorbox(
		{
			opacity : 0.2,
			href 	: src
		});
	});
	
});
