$(document).ready(function() {

	$('#show_hide').append('<a href="#" title="Zwiń" id="hide">Zwiń menu</a>').append('<a href="#" title="Rozwiń" id="show">Rozwiń menu</a>');
	$('#show').hide();
	
	$('#hide').click( function(event) {
		
		event.preventDefault();
		$('.main_categories').fadeOut();
		$('#hide').hide();
		$('#show').show();
		
	});
	
	$('#show').click( function(event) {
		
		event.preventDefault();
		$('.main_categories').fadeIn();
		$('#hide').show();
		$('#show').hide();
		
	});

});

