function css() {

	if($('.add_user_box').children().attr('checked') == true){
		$('#schowek-1').show();
	}
	else{
		$('#schowek-1').hide();
	}

	if($('.f_vat_box').children().attr('checked') == true){
		$('#schowek-2').show();
	}
	else{
		$('#schowek-2').hide();
	}	
	
	
	$('.add_user_box').bind('click', function() {
		if($(this).children().attr('checked') == true){
			$('#schowek-1').show();
		}
		else{
			$('#schowek-1').hide();
		}
	});

	$('.f_vat_box').bind('click', function() {
		if($(this).children().attr('checked') == true){
			$('#schowek-2').show();
		}
		else{
			$('#schowek-2').hide();
		}
	});	

	/* go on for IE in generall */
	if($.browser.msie){
		
		/* take care IE 6 only */
		if($.browser.version <= 6) {
			$('#nav #user-nav li:first-child, #nav #cat-nav li:first-child, #footer .inner .nav li:first-child').addClass('first-child');
			pageCls = $('#page').attr('class');
			$('#page').removeClass();
			$('#top').wrap('<div id="ie-top"></div>');
			$('#page').wrap('<div id="ie-page" class="'+pageCls+'"></div>');
			$('#footer').wrap('<div id="ie-footer"></div>');
		}
		
		
		$('#breadcrumbs li:last-child').addClass('last-child');
	
	}
	
}

$(document).ready(css);
