this.miniGallery = function() {
	
	$('#foto a.small img').css('opacity', 0.5);
	$('#foto a.small:first img').css('opacity', 1);
	

	$('#foto a.small').click(function( e ) {

		var title = $(this).attr("title");
		
		var large = $(this).attr("rel");
		var medium = $(this).attr("href");
		
		$('#foto a.small img').css('opacity', 0.5);
		$('#foto a.small[href=' + medium + '] img').css('opacity',1);

		
		$('#viewMedium').attr({ href: medium, alt: title });
		$('#viewMedium img').attr({ src: large, alt: title });
		
		$('#foto a#viewMedium').colorbox({ href: medium });
		
		return false;
	});
	
	return false;
}
