// studiofabryka.pl
// mc, renomed, 5 sept 2011

$(document).ready(function(){


// two_columns

	if($('aside').length == 1){
		$('body').addClass('two_columns');
	}


//accordeon menu

	$('.col-1 ul > li ul').click(function (e) {
		e.stopPropagation();
	}).filter(':not(:first)').hide();

	$('.col-1 ul > li').click(function () {
		var selfClick = $(this).find('ul:first').is(':visible');
		if (!selfClick) {
			$(this).parent().find('> li ul:visible').slideToggle();
		}
		$(this).find('ul:first').slideToggle();
	});

	$('.col-1 ul li > ul a').prepend("- ");



// typ pliku wg linku w download

	$('.typPliku').each(function(){
		$(this).text('('+ $(this).parent().attr('href').substring($(this).parent().attr('href').length - 3) +')');
		$(this).addClass($(this).parent().attr('href').substring($(this).parent().attr('href').length - 3));
	});


// last li

	$('header nav li:last-child').addClass('last');


// Tables even row

	if($('table').length > 0) {
		$('table tr:even').addClass('even');
	}

	$('.keywords').animate({top:0}, 800);


// blank

	if($('.blank').length > 0) {
		$('.blank').click( function() {
			window.open(this.href);
			return false;
		});
	}


// Gallery

	if ($('.fancy').length > 0) {
		$.getScript('fancybox/fancy.js', function(){
			$(".fancy, a:has(img)").fancybox({
				overlayOpacity: '0.8',
				overlayColor: "#000",
				titlePosition: 'over'
			});
		});
	}




}); // ready end
