function disqus() {
    var url,
	link = $('a[href$="#disqus_thread"]');
    if(!link.length)
	return;
    url = 'http://disqus.com/forums/azeemsblog/get_num_replies.js?';
    link.each(function(i) {
	    url += 'url' + i + '=' + encodeURIComponent(this.href) + '&';
    });
    $.getScript(url);    
}

$(document).ready(function() {
    $('ul.entry-list li a[href^="/blog/delete"]').click(function() {
        if(!confirm('Are you sure you want to delete this?'))
            return false;
    });
    disqus();
});