// JavaScript Document
$(document).ready(function(){
	$(".filmik.wiecej").click(function(){
		$this = $(this); //cache object
		var of = $this.offset();
		var w = $this.width();
		var h = $this.height();
		var float_id = $this.attr("name");
		$("#"+float_id).css({top:of.top+h+4, left:of.left+10}).toggle("slow");
	});
	$(".float").each(function(){
		$this = $(this); //cache object
		var html = $this.html();
		$this.html("<div class='title' title='zamknij'><span class='txtBtn close'>zamknij</span></div><div class='content'>"+html+"</div>");
		$this.find(".txtBtn.close").click(function(){$(this).parents(".float").hide();})
	});
})

