$(document).ready(function(){
	var enabled = 0;
	$('#pielegnacja .link').click(function(){

		if (enabled == 1) {
			$('#pielegnacja .content').fadeOut(300);
			enabled = 0;
		} else {
			$('#pielegnacja .content').fadeIn(300);	
			enabled = 1;
		}
		return false;
	
	});
	
});

$(function() {
	$('.gallery a').lightBox();
});  

