
jQuery(function() {
	jQuery('td.content-list-item-preview a').each( function() {
		var a = jQuery(this);
		var d = jQuery('<div class="playLayer" />');
		a.append(d);
		a.css({
			width : '176px',
			display : 'block',
			position : 'relative'
		});
		
		d.css({
			left : '0px',
			top : '0px',
			position : 'absolute',
			zIndex : 1,
			width: '100%',
			height : '100%'
		});
	});
	
	/*
	 * Höhe der Div anpassen an Inhaltsgröße
	 * siehe http://bugs.suzuki-mc.de/show_bug.cgi?id=2731
	 */
	jQuery('#subcategories').height(jQuery('#subcategories>table').height()); 
});

