/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


$(function(){
 
    $("#facebook").css("left","-250px");
 
$("#facebook").hover(
  function () {
    $("#facebook").animate({left: "0px"}, 1000 );
        $(this).addClass("zamknij");
  },
  function () {
    $("#facebook").animate({left: "-250px"}, 1000 );
        $(this).removeClass("zamknij");
  }
);
});

$(function(){
 
    $("#qype").css("left","-206px");
 
$("#qype").hover(
  function () {
    $("#qype").animate({left: "0px"}, 1000 );
        $(this).addClass("close");
  },
  function () {
    $("#qype").animate({left: "-206px"}, 1000 );
        $(this).removeClass("close");
  }
);
});
