$(document).ready(function(){

	$(".featured-item").hover(function() {
		$(this).children(".featured-info").animate({opacity: "show"}, "slow");
	}, function() {
		$(this).children(".featured-info").animate({opacity: "hide"}, "fast");
	});
	

		$(".paieskos-on-mygtukas").click(function(){
	  $(this).next(".paieskos-on").animate({opacity: "show"}, "slow");
	});
	
		$(".paieskos-on .off-m").click(function(){
	  $(this).parent("div").animate({ opacity: "hide" }, "slow");
	});

});
$(document).ready(function(){

	$(".home-post-wrap2 .share").click(function(){
	  $(this).next("div").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});

});
