jQuery(function($) {
	var offset = $('#gow_list').offset();
	$('ul.gow_list img.box, ul.gow_list h3').bind('click', function(ev) {
		if ($('#cdprogram_top').find('ul li:nth-child(2)').hasClass('active')) {
			return;
		}
		$('#gow_more').css('display', 'none');
		var obj = $(ev.target.parentNode);
		var itemOffset = obj.offset();
		$('#gow_more').html(obj.html());
		$('#gow_more').append('<span class="x">zamknij</span>');
		$('#gow_more').css('top', itemOffset.top - offset.top);
		$('#gow_more').css('display', 'block');
	});
	$('#gow_more').bind('click', function() {
		$('#gow_more').css('display', 'none');
	});
});
