// JavaScript Document

function WallOpen(id){	
	$(window).resize(function(){ WallSize(); });
	$(document.body).css('overflow', 'hidden');
	
	$('#Wall').flash({
		src: '/wall/media/Wall.swf',
    width: $(document).width(),
    height: $(document).height(),
		id: 'WallSWF',
		allowFullscreen: 'true',
		wmode: 'opaque',
	    flashvars: { category: id }

	},{ version: '9.0.115' });
	
	WallSize();
	
	$('#Wall').show();
	document.getElementById('container').style.display='none';
}

function WallClose(){
	$('#Wall').hide();
	$('#Wall').empty();
	document.getElementById('container').style.display='block';
}

function WallImprint(){
	$('#Wall').hide();
	$('#Wall').empty();
	location.href='/index.php?article_id=23';
}

function WallSize(){
	$('#Wall').css({'height':$(window).height() + 'px', 'width':$(window).width() + 'px'});
	$('#WallSWF').attr({'height':$(window).height(), 'width':$(window).width()});
}
