$(document).ready(function(){

        $(document).ready(function(){
            $("a.zdjecie-galeria").colorbox();
        });

	$("#primary-nav li").hover(

		function() {

                    $(this).children('ul').show();
		},

		function() {
                    $(this).children('ul').hide();
		}

	);

});

