$(document).ready(function () {


	/*
	 * Obsługa box'a sprzedaz mieszkan
	 */
	$('.redBox').find('h2').click(function () {
		$('.redBox').find('div').slideUp('50').parent('li').filter('.active').removeClass('active');
		if ($(this).next('div').is(':hidden')) {
			$(this).next('div').slideDown('50').parent('li').addClass('active');
		} else {
			$(this).next('div').slideUp('50');
		}
	});

	$('.redBox2').find('h3').click(function () {
		$('.redBox2').find('div').slideUp('50').parent('li').filter('.active').removeClass('active');
		if ($(this).next('div').is(':hidden')) {
			$(this).next('div').slideDown('50').parent('li').addClass('active');
		} else {
			$(this).next('div').slideUp('50');
		}
	});
	
	
	$("#prezentacja").fancybox({
				'padding'		: 0,
				'autoScale'		: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'swf'			: {
			   	 'menu'			: 'false'
				}

			});

	$("#budynek_01").fancybox({
				'padding'			: 0,
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'swf'			: {
				'allowfullscreen'	:'true'
				}
			});

	$("#budynek_02").fancybox({
				'padding'			: 0,
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'swf'			: {
				'allowfullscreen'	:'true'
				}
			});

	$("#budynek_03").fancybox({
				'padding'			: 0,
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'swf'			: {
				'allowfullscreen'	:'true'
				}

			});

	



});


