window.addEvent('domready', function() {
	if ($('home')) {
	   $('layoutcontent').getElement('table').addClass("twocolumn");
	}
	if ($('default')) {
	   var img = $('headerPicture').getChildren()[0];
	   var imgHeight = img.getProperty("height");
	   var imgSrc = img.getProperty("src");

	   if (imgSrc == 'border="0"') {
	      $('headerPicture').addClass("hidden");
	      $('contentTop').setStyle("top", "8px");
	   }
	}
});