function descriptionFix() {
    small = $('input ~ small, select ~ small, textarea ~ small');
    small.each(function (i, row) {
        $(row).attr("title",  $(row).html());
        $(row).html("&nbsp;");
        $(row).removeClass("hidden");
    })
}

$(document).ready(function() {
	if($(window).width() < 1150) {
		// vycentrujeme stranku horizontalne, aby byla lepe citelna na nizsim rozliseni
		$.scrollTo({left: '50%', top: 0});
	}
	
	// zapne efekt multiselectu
	$('select.multiselect').multiSelect({
		selectAll: false,
		oneOrMoreSelected: '*',
		noneSelected: ''
	});
	
	// prevede popisky formularu na ikony
	descriptionFix();
	
	$("a.preview").fancybox();
});

