$(document).ready(function() {
	// system przechodzenia do listingu poprzez aktywne taby
	jQuery('<span/>').append(' &raquo;').appendTo('.tabs li a').hide();
	$('.tabs li.active a span').show();

	$('.tabs li a').click(function() {
		$(this).parents('ul:first').find('a span').hide();
		$(this).find('span').show();
	});

	$('.tabs li.active a').live('click', function() {
		uri = $(this).attr('href');
		$(document).attr('location', uri);
	});

    // slider

    $("#featured").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 10000, true);
});

