jQuery(document).ready(function(){
	var side = jQuery("#side");
	var content = jQuery("#content");
	
	if (side.height() > content.height()) {
		jQuery(content).height(side.height() + 10);
	} 
	
	jQuery("a[rel='projekt']").colorbox({
		current: "zdjęcie {current} z {total}",
		previous: "poprzednie",
		next: "następne"
	});
});
