// podmiana buttona obrazkowego
function swapButton(ob, image){
		ob.setAttribute('src', 'design/img/menu/'+image+'.gif');
}

// rozwijanie bloku
var tabIdShow = new Array();

tabIdShow[ '1' ] = -1;

var tabIdActShow = new Array();

tabIdActShow[ '1' ] = -1;
tabIdActShow[ '2' ] = -1;


function openW( id , turn , ob ){
	var d = document.getElementById('showField_' + id );
	var b = document.getElementById('showTitle_' + id );
	
	if( turn > 0 ) {
		ob.style[ 'background' ] = '';
		d.style[ 'display' ] = 'none';
		b.innerHTML = '<img src="design/img/barAccountArrow.gif" alt="zobacz więcej">';
	} else {
		ob.style[ 'background' ] = 'url(design/img/barAccountBg1.gif) no-repeat top';
		d.style[ 'display' ] = 'block';		
		b.innerHTML = '<img src="design/img/barAccountArrowTop.gif" alt="zwiń" style="position: relative; top: 43px;">';
	}
}


function moveW( id , ob ){
	tabIdShow[ id ] = !tabIdShow[ id ];
	openW( id , ( tabIdShow[ id ] ? 1 : -1 ) , ob );
}
  
