function PageCall(obj){
	if($('#'+obj).hasClass('port_panel_txt_on')) {
		$('.port_panel_txt_off').removeClass('port_panel_txt_off').addClass('port_panel_txt_on');
		document.getElementById(obj).className = 'port_panel_txt_off';
		$('#port_panel').html('')
		$('#portfolio').animate({
			height: 3
		},300,function(){
			$('#portfolio').animate({
				width:0,
			},300,function(){
				$('#portfolio').animate({
					width:550
				},300, function(){
					$('#portfolio').animate({ 
						height: '100%',
					},function(){
						$('#port_load').fadeIn(200)
						$('#port_load').html('<img src="./imgs/load.gif" width="20" height=="20" />')
						$('#port_panel').load('./pgs/portfolio.php?nick='+obj,function(){
							$('#port_load').fadeOut(300)
							$('#port_panel').fadeIn(300, function(){
								$('#port_fotos').html('<em id="load_img">Carregando imagem...</em>')
								$.getScript('js/jquery_flash.js')
								$('#port_fotos').flash({
    								src: 'port_fotos.swf?nick='+obj,
    								width: 500,
    								height: 400,
									wmode: 'transparent', 
									menu: 'false', 
									quality: 'high', 
									allowfullscreen: 'false', 
									allowscriptaccess: 'false',
									flashvars: { 
										nick: obj 
									}
								});
								$('#load_img').fadeOut(1000);
							});
						});
						
					});
				});
			});
		});
	}else{
		document.getElementById(obj).className = 'port_panel_txt_on';
		$('#port_panel').html('')
		$('#portfolio').animate({
			height: 3
		},300,function(){
			$('#portfolio').animate({
				width:0,
			},300);
		});
	}
}
