$(document).ready(function() {
						   
	$('div.boxTopList > div > ul > li').hover(function() {
		$(this).addClass('active');
	}, function() {
		$(this).removeClass('active');
	});
	
	$('.boxTopList ul.menu a').click(function() {
		$(this).parent().parent().attr('class', 'menu');
		var n = $(this).parent().attr('class');
		$(this).parent().parent().addClass('active'+n);
		var eq = 0;
		switch (n) {
			case 'A': eq = 0; break;
			case 'B': eq = 1; break;
			case 'C': eq = 2; break;
		}
		$(this).parent().parent().parent().find('div.list').hide();
		$(this).parent().parent().parent().find('div.list:eq('+eq+')').show();
		return false;
	});
	
	$('#newsBox ul.menu').tabs({ fx: { opacity: 'toggle', duration: 'normal' } }).tabs('rotate', 3000);
	
	$('#boxPozdrowienia').css('cursor', 'pointer').click(function() {
		document.location.href = $(this).find('h3 a').attr('href');
	});
	
});
	
function wyczyscSzukajBox()
{
	var box = document.getElementById('search_box');
	if (box.value == "Twoje szukane słowo...") box.value = '';
};

function delConfirm()
{
	return confirm('Na pewno usunąć?');
}
		
		
