/*
 * script.js - scripty
 * Autor: Radek Liska, radarfox at seznam.cz 
 */

function initBest() {
	$('#main .best .header.n01')
		.click(function() {
			$('#main .best .header.active')
				.removeClass('active');
			$(this)
				.addClass('active');
			$('#main .best .tab')
				.hide();
			$('#main .best .tab.n01')
				.show();
		})
		.click();
	$('#main .best .header.n02')
		.click(function() {
			$('#main .best .header.active')
				.removeClass('active');
			$(this)
				.addClass('active');
			$('#main .best .tab')
				.hide();
			$('#main .best .tab.n02')
				.show();
		})
}

$(document).ready(function(){

	// LIGHTBOX
	$('a.lightbox').lightBox();

	initBest();

});
