$(document).ready(function() {

	$(".share_button").live('click', function(){
		newwindow=window.open($(this).attr("href"),'name','height=400,width=800');
		if (window.focus) {newwindow.focus()}
		return false;
	});

	$.getJSON("http://www.bandwebkit.com/ext/news.php?widget="+newsid+"&jsoncallback=?", function(data){
		widget = data.text;
		$("#"+newsid).html(widget);
	});

});
