// Quotation 1.0 - jQuery plugin - Q tags display with quotation marks
// created (3/3/2009) by Alexei Goncharov from Altima Web Systems (altima.com.ua)

jQuery(function() {
	jQuery("q").each(function() {
		jQuery(this).parents("q").length > 0 ?
			jQuery(this).prepend("<div class=\"childLeftQuote\"><img src=\"img/open_quote.gif\" width=\"12\" height=\"10\" alt=\"&lsquo;\" /></div>").append("<div class=\"childRightQuote\"><img src=\"img/close_quote.gif\" width=\"12\" height=\"10\" alt=\"&rsquo;\" /></div>") :
			jQuery(this).prepend("<div class=\"parentLeftQuote\"><img src=\"img/open_quote.gif\" width=\"12\" height=\"10\" alt=\"&ldquo;\" /></div>").append("<div class=\"parentRightQuote\"><img src=\"img/close_quote.gif\" width=\"12\" height=\"10\" alt=\"&rdquo;\" /></div>");
	});
});