$(document).ready(function() {
	$('a').focus(function() { this.blur(); });
	$('input[type="submit"]').focus(function() { this.blur(); });
	initBoxTable();
	$('#header_image').append('<div id="header_mask"></div>');
	$('h1.cc_uhr').append('<div class="img_uhr"></div>');
	
});

function initBoxTable() {
	$('table.cc_box').each(function() {
		var table = $(this);
		var topcols = table.find('tr').first().children('td');
		if (topcols.length != 2) return;
		topcols.addClass('box_header');
		topcols.wrapInner('<h3></h3>');
		table.append('<tr class="box_bottom"><td></td><td></td></tr>');
		table.find('tr').last().children('td').append('<span class="box_bottom"></span>');
	});
}
