﻿$(document).ready(function (){
	//About
	$("div.intro2").cycle({ 
		fx:     'fade',
		speed: 	'slow',   
		timeout: 5000 
	});
	
	$("div.intro1").cycle({ 
		fx:     'fade',
		speed: 	'slow',   
		timeout: 4000,
		before:	tytul_1 
	});
	function tytul_1() {
		$('div.info1').html(this.alt); 
	}
		
	//MENU
	$('#mojemenu li > ul').css("opacity","0.0");
	$('#mojemenu li.headlink').hover(
			function() { $('ul', this).css("display","block").stop().animate({opacity: 1.0}, 400);	},
			function() { $('ul', this).css("display","none").stop().animate({opacity: 0.0}, 400); }
	);
		
	$('#mojemenu li.childlink').hover(
			function() { $(this).css('background', 'url(img/sub_button_on.png)'); },
			function() { $(this).css('background', 'url(img/sub_button.png)'); }
	);
	
	
});
