/**
 * JS eye candy
 *
 *
 * @project	zurichmasterclass.org
 * @author 	Daniel Selinger <mail@dselinger.biz>
 * @date		2009-04-29
 */

window.addEvent('domready', function(){	
	
	if($$('div.refImageSingle').length > 0){		
		$$('div.innerContent')[0].addClass('innerContentRight');		
		}
		
	if($('zmcAccLink') && Browser['Engine'] != 'webkit'){
		//$('boxPage').setStyle('margin-top', '-156px');
		}
		
	/**
	 * Removes empty p tags
	 */
	if($$('p.bodytext').length > 0){
		$$('p.bodytext').each(function(el){
			if(el.get('text').trim() == '' && el.getChildren('img') > 0){
				el.dispose();
				}
			});
		}
		
	});