$(function(){
	if ($(".hinweis").length) {
		hinweis = $(".hinweis");
		hinweis.hide();
		$("<div id=\"js_hinweis\">" + hinweis.html() + "</div>")
			.css({
				padding: '10px', 
				background: '#323031',
				position: 'fixed',
				top: '0', 
				left: '0', 
				'z-index': '66', 
				width: '99%',
				color: '#f27a54',
				'font-weight': 'bold',
				'border-bottom-width': '1px',
				'border-bottom-style': 'solid',
				'border-bottom-color': '#939598',
				display: 'none'
			})
			.appendTo('body')
			.fadeIn(1000);		
	}
	
	$('input[type=checkbox]').checkbox({
		empty: "../images/checkbox/empty.png"
	});
});

