function blog_scroll_down(artist_name) {
	$('#blog-content iframe').attr('src', "/" + artist_name + "/blogproxy/");
	$('#blog-content iframe').load(function() {
		$("#blog").show();
		$(this).height($(this).contents().find("html").height());
		$('html, body').animate({scrollTop: $("#blog").offset().top}, 1300);
		$(this).contents().find('a').attr('target', '_blank')
		$(this).contents().find('body').css('background-color', 'transparent');
	});


/*
	$('#blog-content iframe').load('/' + artist_name + '/blogdiv/', function() {
		$("#blog").show();
		$('html, body').animate({scrollTop: $("#blog").offset().top}, 1300);
	});
*/
}

function blog_scroll_up() {
	$('html, body').animate({scrollTop: 0}, 1300, function() {
		// Animation complete
		// $('#blog-content iframe').removeAttr('src');
		$("#blog").hide();
	});
}


