/*
 * script.js - scripty
 * Autor: Radek Liska, radarfox at seznam.cz 
 */

function initHead() {
	var values = ['theme01', 'theme02', 'theme03']
	var random = new Date().getMilliseconds() % 3;
	$('body')
		.removeClass('theme01')
		.addClass(values[random]);
}

$(document).ready(function(){

	// HEAD
	initHead();

	// LIGHTBOX
	$('a.lightbox').lightBox();

});
