function changeScene2( item, id ){

	for( i = 1; i < _data[id].length; i++ ){
		
 		if( document.getElementById( 'thumbs_' + id + '_' + i ) ) document.getElementById( 'thumbs_' + id + '_' + i ).style.display = 'none';
 		if( document.getElementById( 'downloads_' + id + '_' + i ) ) document.getElementById( 'downloads_' + id + '_' + i ).style.display = 'none';
 		if( document.getElementById( 'link_' + id + '_' + i ) ) document.getElementById( 'link_' + id + '_' + i ).className = 'inactive';
			
	}	
	
	document.getElementById( 'thumbs_' + id + '_' + item ).style.display = 'block';
	document.getElementById( 'downloads_' + id + '_' + item ).style.display = 'block';
	document.getElementById( 'link_' + id + '_' + item ).className = 'active';
	
	for ( var i = 0; i <  _data[id][item].length; i++ ){
		if( document.getElementById( 'thumb_' + id + '_' + item + '_'+ ( i + 1 ) ) ) document.getElementById( 'thumb_' + id + '_' + item + '_'+ ( i + 1 ) ).src = _data[id][item][i];
	}
	
}