
/*jq(function(){

	//jq("#wysuwane").css("left","-210px");
 
	jq("#wysuwane").hover(
		function () {
			jq(this).stop();
			jq("#wysuwane").animate({left: "0px"}, 1000 );
			jq(this).addClass("zamknij");
		},
		function () {
			jq(this).stop();
			jq("#wysuwane").animate({left: "-210px"}, 1000 );
			jq(this).removeClass("zamknij");
		}
	);
});*/


//Facebook
jq(function()
{
	jq('#facebook').hover(
		function()
		{
			var el = jq(this).find('.facebook-cont');
			el.stop();
			el.animate( { left:'-265px' }, 500 );
			
		},
	
		function()
		{
			var el = jq(this).find('.facebook-cont');
			el.stop();
			el.animate( { left:'-54px' }, 500 );
			
		});
});

