//jQuery
jQuery(function( $ ){
	$('#pics_left a').lightBox();
	$('#pics_bottom a').lightBox();

	//n/c
	//cause of the greatest browser ever - IE
	//the code below is not cool ;]
	//problem with transparent PNG images rendering with fadeIn
	var ie_sucks = 0;

	if($.browser.msie){
		ie_sucks = 1;
	}

	//images preload
	$.preload('img', {
		onFinish: after_load,
		threshold: 1
	});

	function after_load(){
		$('#menu_loading').hide();
		if (ie_sucks == 0)
		{
			$('#header').fadeIn('slow');
			$('#menu').fadeIn('slow');
		} else {
			$('#header').show('slow');
			$('#menu').show();
		}
		$('#menu img').pngfix();
	};

	//menu control and gfx events
	$("div.biografia_click").mouseover(function(){
		$(this).css({
			top: "-5px",
			left: "-5px"
		});
	}).mouseout(function(){
		$(this).css({
			top: "0px",
			left: "0px"
		})
	}).click(function(){
		if (ie_sucks == 0)
		{
			$('#menu').fadeOut('slow');
			$('#biografia').hide().fadeIn('slow');
		} else {
			$('#menu').hide();
			$('#biografia').show();
		}
		$('#biografia img').pngfix();
	});

	$("div.dladzieci_click").mouseover(function(){
		$(this).css({
			left: "295px"
		});
	}).mouseout(function(){
		$(this).css({
			left: "290px"
		});
	}).click(function(){
		$('#body').css({height: "1000px"});
		$('#dladzieci_text').html('<img src="gfx/spinner.gif" alt="loading"/><span class="loading">ładowanie, proszę czekać</span>');
		$('#dladzieci_index').html('<img src="gfx/spinner.gif" alt="loading"/>');
		if (ie_sucks == 0)
		{
			$('#menu').fadeOut('slow');
			$('#dladzieci').hide().fadeIn('slow', function() {
				$('#dladzieci_text').load('show.php?what=dladzieci', function() {
					$('#dladzieci_text').hide().fadeIn('slow');
				});
			});
		} else {
			$('#menu').hide();
			$('#dladzieci').show();
			$('#dladzieci_text').load('show.php?what=dladzieci', function() {
				$('#dladzieci_text').show();
			});
		}
		
		$('#dladzieci_index').load('titles.php?what=dladzieci', function() {
			$('#dladzieci_index').localScroll({
				target: '#dladzieci_text',
				duration: 1500
			});
		});

		$('#dladzieci img').pngfix();
	});

	$("div.tekstypiosenek_click").mouseover(function(){
		$(this).css({
			top: "369px",
			left: "-5px"
		});
	}).mouseout(function(){
		$(this).css({
			top: "364px",
			left: "0px"
		});
	}).click(function(){
		$('#body').css({height: "1000px"});
		$('#tekstypiosenek_text').html('<img src="gfx/spinner.gif" alt="loading"/><span class="loading">ładowanie, proszę czekać</span>');
		$('#tekstypiosenek_index').html('<img src="gfx/spinner.gif" alt="loading"/>');
		if (ie_sucks == 0)
		{
			$('#menu').fadeOut('slow');
			$('#tekstypiosenek').hide().fadeIn('slow', function() {
				$('#tekstypiosenek_text').load('show.php?what=tekstypiosenek', function() {
					$('#tekstypiosenek_text').hide().fadeIn('slow');
				});
			});
		} else {
			$('#menu').hide()
			$('#tekstypiosenek').show();
			$('#tekstypiosenek_text').load('show.php?what=tekstypiosenek', function() {
				$('#tekstypiosenek_text').show();
			});
		}
		
		$('#tekstypiosenek_index').load('titles.php?what=tekstypiosenek', function() {
			$('#tekstypiosenek_index').localScroll({
				target: '#tekstypiosenek_text',
				duration: 1500
			});
		});

		$('#tekstypiosenek img').pngfix();
	});

	$("div.teatr_click").mouseover(function(){
		$(this).css({
			top: "195px"
		});
	}).mouseout(function(){
		$(this).css({
			top: "200px"
		});
	}).click(function(){
		$('#body').css({height: "1000px"});
		$('#teatr_text').html('<img src="gfx/spinner.gif" alt="loading"/><span class="loading">ładowanie, proszę czekać</span>');
		$('#teatr_index').html('<img src="gfx/spinner.gif" alt="loading"/>');
		if (ie_sucks == 0)
		{
			$('#menu').fadeOut('slow');
			$('#teatr').hide().fadeIn('slow', function() {
				$('#teatr_text').load('show.php?what=teatr', function() {
					$('#teatr_text').hide().fadeIn('slow');
				});
			});
		} else {
			$('#menu').hide();
			$('#teatr').show();
			$('#teatr_text').load('show.php?what=teatr', function() {
				$('#teatr_text').show();
			});
		}
		
		$('#teatr_index').load('titles.php?what=teatr', function() {
			$('#teatr_index').localScroll({
				target: '#teatr_text',
				duration: 1500
			});
		});

		$('#teatr img').pngfix();
	});

	$("div.proza_click").mouseover(function(){
		$(this).css({
			top: "330px"
		});
	}).mouseout(function(){
		$(this).css({
			top: "325px"
		});
	}).click(function(){
		$('#body').css({height: "1000px"});
		$('#proza_text').html('<img src="gfx/spinner.gif" alt="loading"/><span class="loading">ładowanie, proszę czekać</span>');
		$('#proza_index').html('<img src="gfx/spinner.gif" alt="loading"/>');
		if (ie_sucks == 0)
		{
			$('#menu').fadeOut('slow');
			$('#proza').hide().fadeIn('slow', function() {
				$('#proza_text').load('show.php?what=proza', function() {
					$('#proza_text').hide().fadeIn('slow');
				});
			});
		} else {
			$('#menu').hide();
			$('#proza').show();
			$('#proza_text').load('show.php?what=proza', function() {
				$('#proza_text').show();
			});
		}
		
		$('#proza_index').load('titles.php?what=proza', function() {
			$('#proza_index').localScroll({
				target: '#proza_text',
				duration: 1500
			});
		});

		$('#proza img').pngfix();
	});

	$("div.wiersze_click").mouseover(function(){
		$(this).css({
			top: "165px",
			left: "693px"
		});
	}).mouseout(function(){
		$(this).css({
			top: "160px",
			left: "688px"
		});
	}).click(function(){
		$('#body').css({height: "1000px"});
		$('#wiersze_text').html('<img src="gfx/spinner.gif" alt="loading"/><span class="loading">ładowanie, proszę czekać</span>');
		$('#wiersze_index').html('<img src="gfx/spinner.gif" alt="loading"/>');
		if (ie_sucks == 0)
		{
			$('#menu').fadeOut('slow');
			$('#wiersze').hide().fadeIn('slow', function() {
				$('#wiersze_text').load('show.php?what=wiersze', function() {
					$('#wiersze_text').hide().fadeIn('slow');
				});
			});
		} else {
			$('#menu').hide();
			$('#wiersze').show();
			$('#wiersze_text').load('show.php?what=wiersze', function() {
				$('#wiersze_text').show();
			});									
		}
		
		$('#wiersze_index').load('titles.php?what=wiersze', function() {
			$('#wiersze_index').localScroll({
				target: '#wiersze_text',
				duration: 1500
			});
		});

		$('#wiersze img').pngfix();
	});

	$("div.felietony_click").mouseover(function(){
		$(this).css({
			top: "-5px"
		});
	}).mouseout(function(){
		$(this).css({
			top: "0px"
		});
	}).click(function(){
		$('#body').css({height: "1000px"});
		$('#felietony_text').html('<img src="gfx/spinner.gif" alt="loading"/><span class="loading">ładowanie, proszę czekać</span>');
		$('#felietony_index').html('<img src="gfx/spinner.gif" alt="loading"/>');
		if (ie_sucks == 0)
		{
			$('#menu').fadeOut('slow');
			$('#felietony').hide().fadeIn('slow', function() {
				$('#felietony_text').load('show.php?what=felietony', function() {
					$('#felietony_text').hide().fadeIn('slow');
				});
			});
		} else {
			$('#menu').hide();
			$('#felietony').show();
			$('#felietony_text').load('show.php?what=felietony', function() {
				$('#felietony_text').show();
			});
		}

		$('#felietony_index').load('titles.php?what=felietony', function() {
			$('#felietony_index').localScroll({
				target: '#felietony_text',
				duration: 1500
			});
		});

		$('#felietony img').pngfix();
	});

	$("div.blog_click").mouseover(function(){
		$(this).css({
			left: "495px"
		});
	}).mouseout(function(){
		$(this).css({
			left: "500px"
		});
	});

	//back links, yeah each for each div ;-/
	//konqueror, IEs 6/7 problems
	$('#header #bm_menu').click(function(){
		if (ie_sucks == 0)
		{
			$('#menu').fadeIn('slow');
			$('#biografia').fadeOut('slow');
			$('#dladzieci').fadeOut('slow');
			$('#tekstypiosenek').fadeOut('slow');
			$('#teatr').fadeOut('slow');
			$('#proza').fadeOut('slow');
			$('#wiersze').fadeOut('slow');
			$('#felietony').fadeOut('slow');
		} else {
			$('#menu').show();
			$('#biografia').hide();
			$('#dladzieci').hide();
			$('#tekstypiosenek').hide();
			$('#teatr').hide();
			$('#proza').hide();
			$('#wiersze').hide();
			$('#felietony').hide();
		}
	});

	$('#biografia #bm_biografia').click(function(){
		if (ie_sucks == 0)
		{
			$('#menu').fadeIn('slow');
        	        $('#biografia').fadeOut('slow');
		} else {
			$('#menu').show();
			$('#biografia').hide();
		}
	});

	$('#dladzieci #bm_dladzieci').click(function(){
		$('#body').css({height: "652px"});
		if (ie_sucks == 0)
		{
			$('#menu').fadeIn('slow');
			$('#dladzieci').fadeOut('slow');
		} else {
			$('#menu').show();
			$('#dladzieci').hide();
		}
	});

	$('#tekstypiosenek #bm_tekstypiosenek').click(function(){
		$('#body').css({height: "652px"});
		if (ie_sucks == 0)
		{
			$('#menu').fadeIn('slow');
			$('#tekstypiosenek').fadeOut('slow');
		} else {
			$('#menu').show();
			$('#tekstypiosenek').hide();
		}
	});

	$('#teatr #bm_teatr').click(function(){
		$('#body').css({height: "652px"});
		if (ie_sucks == 0)
		{
			$('#menu').fadeIn('slow');
			$('#teatr').fadeOut('slow');
		} else {
			$('#menu').show();
			$('#teatr').hide();
		}
	});

	$('#proza #bm_proza').click(function(){
		$('#body').css({height: "652px"});
		if (ie_sucks == 0)
		{
			$('#menu').fadeIn('slow');
			$('#proza').fadeOut('slow');
		} else {
			$('#menu').show();
			$('#proza').hide();
		}
	});

	$('#wiersze #bm_wiersze').click(function(){
		$('#body').css({height: "652px"});
		if (ie_sucks == 0)
		{
			$('#menu').fadeIn('slow');
			$('#wiersze').fadeOut('slow');
		} else {
			$('#menu').show();
			$('#wiersze').hide();
		}
	});

	$('#felietony #bm_felietony').click(function(){
		$('#body').css({height: "652px"});
		if (ie_sucks == 0)
		{
			$('#menu').fadeIn('slow');
			$('#felietony').fadeOut('slow');
		} else {
			$('#menu').show();
			$('#felietony').hide();
		}
	});
});

 


