$(document).ready(function()
{
	$("a.newwindow").click(function()
	{
		window.open(this.href, '_blank'); 
		return false;
	});

	$("#EmailNewsletter").focus(function()
	{
		if ($(this).val()=='Twój adres e-mail')
			$(this).val('');
	});
	
	$("#EmailNewsletter").blur(function()
	{
		if ($(this).val()=='')
			$(this).val('Twój adres e-mail');
	});
	
	if($("#nav")) {
		$("#nav li a").click(function(e) 
		{
			if($(this).next().get(0))
		    {
				if(this.className.indexOf("clicked") != -1) 
				{
				/* zamykanie UL UL*/
					$(this).next("ul").children().children("ul").hide();
					$(this).next("ul").children().children("a").removeClass("clicked");
				/* koniec */
			   		$(this).next("ul").slideUp(200);
					$(this).removeClass("clicked");
				}
				else 
				{
				/* zamykanie UL UL*/
					$(this).parent().parent().children().children("ul").children().children("ul").hide();
					$(this).parent().parent().children().children("ul").children().children("a").removeClass("clicked");
				/* koniec */
					$(this).parent().parent().children().children("a").removeClass("clicked");
					$(this).addClass("clicked");
					$(this).parent().parent().children().children("ul").slideUp(200);
					$(this).next("ul").slideDown(500);
				}
				return false;
			}
		});
	}
	
	$('#Gallery a').lightBox({
		txtImage: 'Obraz',
		txtOf: 'z'
	});
	
	initialize_flash();

})