jQuery.noConflict();
var j$ = jQuery;
/* user jquery.js */
var dokuConf = {
	/* Blog URL */
	BlogURL: 'http://crazyheart.net/',
	ArchiveURL: 'http://crazyheart.net/archives/',
	/* Blog Title */
	BlogTitle: '毒庭',
	/* Admin CGI URL */
	AdminUrl: ['http://crazyheart.net/mt/', 'mt.cgi'].join(''),
	/* Comment CGI URL */
	CommentURL: ['http://crazyheart.net/mt/', 'mt-comments.cgi'].join(''),
	/* Search CGI URL */
	SearchURL: ['http://crazyheart.net/mt/', 'mt-search.cgi'].join(''),
	
	/* ajax loader image */
	ajaxLoaderImg: ['http://crazyheart.net/cmn/js/images/', 'ajax-loader.gif'].join(''),
	JumpAnchorText: 'JumpAnchor'
};
dokuConf.JumpAnchorText = '?' + dokuConf.JumpAnchorText + '=';

j$(document).ready(function() {
	var location = encodeURI(document.location.href).replace(/#.*/,'');
	j$('a[href^=http://]:not([href^=' + dokuConf.BlogURL + '])').each(function(){
           j$(this).attr('target', '_blank');
        });
	
	j$('a[href^=#]:not([href=#])').click(function() {
		var id = j$(this.hash);
		
		if (id.size()) {
			id.ScrollTo(800);
			return false;
		}
	});
	j$(".textBody a.iframe").iframe();



});

