$j = jQuery.noConflict(); 

$j(document).ready(function() {
	
	
	$j(function ()
	{
		var objTagOpen = '<object type="application/x-shockwave-flash" data="/tl_files/layout/flash/dewplayer-mini.swf" width="160" height="20" id="dewplayer" name="dewplayer"> <param name="wmode" value="transparent" /><param name="movie" value="/tl_files/layout/flash/dewplayer-mini.swf" /> <param name="flashvars" value="mp3=',
			objTagClose = '" /> </object>';
	
		// find all the links whose href ends with '.mp3',
		// and for each one,
		$j('a[href$=.mp3]').each(function ()
		{
			var $this = $j(this);
	
			// insert the flash <object> with the flashvars parameter
			$this.before(objTagOpen + $this.attr('href') + objTagClose);
	
			// then rewrite the link itself
			$this.before($this.text());
			$this.text('');
			
		});
	});
	

	/*	Open agb and widerruf new window */
	$j('form#f3 a').attr('target', '_blank');
	
	
	$j('#iso_mod_checkout_review .billing_address h3').text('Versandadresse');
	
	
});
