$(document).ready(function() {

/*$("#scroller").simplyScroll({
	className: 'vert',
	horizontal: false,
	frameRate: 20,
	speed: 1
});  */

// nyroModal
$('a[rel*=nyroModal]').nyroModal(); // Select all links that contains lightbox in the attribute rel
$('a[rel*=galery]').nyroModal(); // Select all links that contains lightbox in the attribute rel
$('#clanek-detail a[href$="jpg"]').nyroModal(); // Select all links with lightbox class
$('#clanek-detail a[href$="swf"]').nyroModal();


$(window).load(function () {
	
	var col1h = $("#menu").height()-30;
	var col2h = $("#content").height()+5;
	var col3h = $("#block-right").height()-5;
	//alert(col1h + ' - ' + col2h + ' - ' + col3h);
	
	heightCols = Math.max(col1h,col2h,col3h);
	$("#content .body").height(heightCols-48);
	//$("#menu .box").height(heightCols);
	//$("#block-right").height(heightCols+40);
});

});

