/*
 * script.js - scripty
 * Autor: Radek Liska, radarfox at seznam.cz 
 */

function initHead() {
	var values = ['style01', 'style02'];
	var random = new Date().getTime() % values.length;
	$('#head .category')
		.removeClass('style01')
		.addClass(values[random]);
}
/*
function initCufon() {
	Cufon.replace('#content .box .header, #main .headline');
}
*/

$(document).ready(function(){

	// LIGHTBOX
	$('a.lightbox').lightBox();

	initHead();
//	initCufon();

});
