/**
 * FIX IE6 IMAGE FLICKER PROBLEM
 *
 */
try {
	document.execCommand('BackgroundImageCache', false, true);
} catch(e) {}

$(document).ready(Init);

function Init()
{
	$('#wrapper blockquote').each(function(i){
		$('p:first', this).prepend('<img alt="&#8220;" src="$baseurl_images/icons/quote_begin.gif" />&nbsp;');
		$('p:last', this).append('<img alt="&#8221;" src="$baseurl_images/icons/quote_end.gif" valign="baseline" />');
	});
}