/*

	Writed by Marcin Elektryk Gajda
	www.marcingajda.pl
	
	License: CC-BY-SA 3.0
	
	MGstudio 2010
	www.mgstudio.ayz.pl

*/


function animacjabuttonow(reset){
  if(reset)jQuery('.suwak').css({ top: "300px" });
	jQuery('.suwak').animate({ top: "-750px" }, 25000, 'linear',function() {
    animacjabuttonow(1)
  });
}

jQuery(document).ready(
function(){

  jQuery('.buttons').css({ height: "300px", overflow: "hidden" });
  jQuery('.suwak').css({ position: "relative", top: "300px" });
  animacjabuttonow();

  jQuery('.suwak').mouseover(function(){
    jQuery('.suwak').stop(false, false);
  });

  jQuery('.suwak').mouseout(function(){
    animacjabuttonow(0);
  });


});