$(document).ready(function(){ 
	$('a[rel=colorbox]').colorbox();
	$('a.colorbox').colorbox();
	
	$('.cennik_text').hide();
	
	$('.cennik_box a').click(function(){
		$('.cennik_text').hide();
		$('.cennik_box a').removeClass('selected');
		var href = $(this).attr('id');
		$(this).addClass('selected');
		$('#cennik_'+href).fadeIn('slow');
		return false;
	});
});
