$(document).ready(function() {

	$('html').removeClass('no-js');
	
	$('input:text, input:password').clearDefault();
	
	$("#index-scroll").scrollable({
		circular : true
	}).autoscroll({
		autoplay : true
	}).navigator();
	
	$('.zoom').lightBox();
	
	$.extend($.fn.disableTextSelect = function() {
		return this.each(function(){
			if($.browser.mozilla){//Firefox
				$(this).css('MozUserSelect','none');
			}else if($.browser.msie){//IE
				$(this).bind('selectstart',function(){return false;});
			}else{//Opera, etc.
				$(this).mousedown(function(){return false;});
			}
		});
	});
	$('div.item, h3, h2, div.c_left, div.c_right, #cat').disableTextSelect();

	$('.rol').click(function() {
		if ($(this).next('div').hasClass("active")) {
			$('.active').slideToggle('slow').removeClass('active');
		} else {
			$('.active').slideToggle('slow').removeClass('active');
			$(this).next('div').slideToggle('slow').addClass('active');
		}
	});
	
	$('label.aaa1').click(function(){
		if ($("#nfaktura").is(':checked')) {
			$(this).next('div').show();
		} else {
			$(this).next('div').hide();
		};

	}); 
	$('label.aaa2').click(function(){

		if ($("#nadres").is(':checked')) {
			$(this).next('div').show();
		} else {
			$(this).next('div').hide();
		};
	});

	// end ready()
});
