// FONT SIZE SCRIPT

$(function(){
		$('a').click(function(){
			var ourText = $('p');
			var currFontSize = '';
			var finalNum = '';
			var stringEnding = '';
			if(this.id == 'rozmiar') {
				finalNum = '17px';this.id = 'reset';
			}
			else if (this.id == 'reset'){
				finalNum = '16px';this.id = 'rozmiar'
			}
			ourText.css('fontSize', finalNum);
		});
	});

// DETACHABLE SIDEBAR

$(document).ready(function () {  
  var $scrollingDiv = $("#sidebar");
  var top = 300;
  $(window).scroll(function (event) {
    // what the y position of the scroll is
    var y = $(this).scrollTop() -800;
  
    // whether that's below the form
    if (y >= top) {
      // if so, ad the fixed class
      $scrollingDiv
				.stop()
				.animate({"marginTop": ($(window).scrollTop() - 320) + "px"}, 2000 );	
    } else {
      $scrollingDiv
				.stop()
				.animate({"marginTop":  "15px"}, 700 );

    }
  });
});
