pagemarginwidth = 540;
$(document).ready(function(){
	$('#topnews').hide();
	$('#topnews').css('height',$('body').height()-100);
	$('#topnews').css('width',$('body').width()-pagemarginwidth);
	var loca = location.search.replace('?','');
	if (loca != '' && loca.match('^http://(www\.)?twochips\.com/')) $('#topnews iframe').attr('src',loca);
	$('#topnews').show('slow');
	$('#papercloser #btncloser').click(function() {
		$('#topnews').hide('slow');
	});
	$('#papercloser #btnexpander').toggle(
		function() {
			$('#topnews').animate({'width':'+=340'},'slow');
			$('#topnews').css('height',$('body').height()-100);
			pagemarginwidth = 200;
			$(this).attr('src','images/btn_shrink.gif');
		},
		function() {
			$('#topnews').animate({'width':'-=320'},'slow');
			$('#topnews').css('height',$('body').height()-100);
			pagemarginwidth = 540;
			$(this).attr('src','images/btn_expand.gif');
		}
	);
	$('#newspaper').click(function() {
		$('#topnews').show('slow');
	});
	$('#counter').load('/count/count.cgi');
});
$(window).resize(function(){
	$('#topnews').css('height',$('body').height()-100).css('width',$('body').width()-pagemarginwidth);
});

