$(document).ready(function() {
	
	try {
		if (window.location.href.match(/local/).length > 0) {
			$('body').append('<div id="grid18"></div>');
			$('#grid18').click(function() {$(this).toggleClass('active');});
		}
	} catch (e) {};
	
	$('#post .entry-content blockquote').each(function() {
		$(this)
			.prepend('<span class="quote-open">&ldquo;</span><span class="quote-close">&rdquo;</span>');
	});
	
});
