/**/jQuery.noConflict();jQuery(document).ready(function(){	// KONZERTTIPP SET LINK KONZERT_OUT_LIST	jQuery('.moduletable-leftteaser.konzerttipp .contentpaneopen td').each(function(){				var html = "<a href='component/option,com_wrapper/Itemid,74'>";		html     += 	jQuery(this).html();		html     += "</a>";		jQuery(this).html(html);			});		// RESIZE IMAGES IN LEFT TEASER CDTIPP	jQuery('.moduletable-leftteaser.cdtipp img')		.removeAttr('width')		.removeAttr('height')		.css("width", "155px")		.css("height", "")		.css("display", "block")		.css("float", "none")		;		// CD TIPP RE-PLACE LINK TO IMAGE	var link = jQuery('.moduletable-leftteaser.cdtipp a.readon').attr('href');	jQuery('.moduletable-leftteaser.cdtipp img:first')		.wrap("<a href='"+link+"'></a>")		;	jQuery('.moduletable-leftteaser.cdtipp tr:last')		.remove()		;	jQuery('.moduletable-leftteaser.cdtipp p:first')		.css("padding-left", "6px")		;			// RESIZE YOTUBE VIDEOS IN LEFT TEASER VIDEOTIPP	jQuery('.moduletable-leftteaser.dvdtipp object')		.attr("width", "155")		.attr("height", "128")		;	jQuery('.moduletable-leftteaser.dvdtipp embed')		.attr("width", "155")		.attr("height", "128")		;		});