$(document).ready(function() {
	if($('#productList_Description2')){
		output = '<a href="javascript:;" onclick="alert(\'video:$1\')"><img src="http://i.ytimg.com/vi/$1/default.jpg" width="70" style="border:1px solid grey;" border="0" /></a> ';
		str = $('#productList_Description2').text();
		if(str.indexOf('http://www.youtube.com/') != -1){
			str = '<h3>Se videoer</h3>'+str;
		}
		//console.log('debug = '+str.indexOf('http://www.youtube.com/'));
		str = str.
		//replace(/http\:\/\/www\.youtube\.com\/watch\?v\=(\S+)&(\S+)/, output).
		replace(/http\:\/\/www\.youtube\.com\/watch\?v\=(\S+)&feature=related/gi, output).
		replace(/http\:\/\/www\.youtube\.com\/watch\?v\=(\S+)&feature=fvw/gi, output).
		replace(/http\:\/\/www\.youtube\.com\/watch\?v\=(\S+)&feature=grec_index/gi, output).
		replace(/http\:\/\/www\.youtube\.com\/watch\?v\=(\S+)/gi, output);
		//console.log(str);
		$('#productList_Description2').html(str); //text()
	}
})
