(function($) {
	$(function() {
		$('a[href="#"]').click(function() {
			return false;
		});

		$('a._editSnippet').click(function() {
			window.open($(this).attr('href'), 'editor', 'width=800,height=600');
			return false;
		});
	});

})(jQuery);

