$(function() {

$(window).bind('hashchange', function(e) {
	$('div.loading').fadeIn('fast');
	$('#feed_content').load('feed_content.cfm?page=' + location.hash.slice(1) + '&filter=' + g_url_params['filter'], function() {		
		$('div.loading').fadeOut('fast');
		$('iframe').attr('allowTransparency', 'true');
	});
});
if (location.hash) { /* load default content if a hash was given */
	$(window).trigger( 'hashchange' );
}
$('iframe').attr('allowTransparency', 'true');
$('#twitter_button').attr('target', '_blank');
});