$(document).ready(function(){
	// footer position
	var bigheight;
	if ($.browser.msie)
		bigheight = $(window).height();
	else
		bigheight = window.innerHeight;
		var contentheight = bigheight - 42;
		$('#master').css({'min-height':contentheight + 'px'})
	
	// some styles
	$('.rightFrontCenter .articleBox:last-child').css({"margin-bottom":"0", "border-bottom":"none"});
	$('#centerColumnFront .frontNews:last-child').css({"border-bottom":"none"});
	//$('.contentBox').equalHeight();
	var boxCount = $('div#contentCenter div.contentBox').length;
	if (boxCount % 2 == 1) {
		boxCount += 1;
		$('div#contentCenter').append('<div class="contentBox">&nbsp;</div>');
	}
	for (var i = 0; i < boxCount; i += 2) {
		$('div#contentCenter div.contentBox:nth(' + i + '),div#contentCenter div.contentBox:nth(' + (i + 1) + ')').equalHeight();
	}
	$('.contentBox:first').css({"margin-top":"0", "border-top":"none", "padding-top":"0"});
	$('.contentBox:first').next().css({"margin-top":"0", "border-top":"none", "padding-top":"0"});
	$('ul#mainMenu li:nth-child(2) a,ul#mainMenu li:nth-child(3) a, ul#mainMenu li:nth-child(4) a, ul#mainMenu li:nth-child(5) a').css({'padding-top':'14px', 'height': '31px'});
	
	//var identity = document.getElementById('master');
	//var css = document.getElementById('css').value;
	//identity.className=css;
	
	
	
	
	
	
	
	
});


function changeCSS() {
	var identity = document.getElementById('master');
	var css = document.getElementById('css').value;
	identity.className=css;
}
